summaryrefslogtreecommitdiff
path: root/server/src/git_root.rs
diff options
context:
space:
mode:
Diffstat (limited to 'server/src/git_root.rs')
-rw-r--r--server/src/git_root.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/server/src/git_root.rs b/server/src/git_root.rs
index 4da8f43..31e4d45 100644
--- a/server/src/git_root.rs
+++ b/server/src/git_root.rs
@@ -25,6 +25,7 @@ type DbConnection = <DbPool as Pool>::Connection;
#[derive(Debug, Deserialize)]
pub struct Config<'a> {
git_server_root: Cow<'a, str>,
+ git_hook: Cow<'a, str>,
}
struct RootsData {
@@ -396,11 +397,13 @@ async fn setup_project_root(
) -> Result<Arc<git::Repository>, git::Error> {
let mut path = PathBuf::from(config.git_server_root.to_string());
path.push(project_id);
+ let githook = PathBuf::from(config.git_hook.to_string());
let repo = Arc::new(git::Repository::new(
path,
true,
Some(remote),
Some(project_id),
+ Some(githook),
));
repo.setup().await?;