aboutsummaryrefslogtreecommitdiff
path: root/cmd/hook.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/hook.go')
-rw-r--r--cmd/hook.go13
1 files changed, 13 insertions, 0 deletions
diff --git a/cmd/hook.go b/cmd/hook.go
index a917554d..1a494373 100644
--- a/cmd/hook.go
+++ b/cmd/hook.go
@@ -11,6 +11,7 @@ import (
"os/exec"
"path/filepath"
+ "github.com/Unknwon/com"
"github.com/urfave/cli"
"github.com/gogits/gogs/models"
@@ -65,6 +66,10 @@ func runHookPreReceive(c *cli.Context) error {
}
customHooksPath := os.Getenv(_ENV_REPO_CUSTOM_HOOKS_PATH)
+ if !com.IsFile(customHooksPath) {
+ return nil
+ }
+
hookCmd := exec.Command(filepath.Join(customHooksPath, "pre-receive"))
hookCmd.Stdout = os.Stdout
hookCmd.Stdin = buf
@@ -99,6 +104,10 @@ func runHookUpdate(c *cli.Context) error {
}
customHooksPath := os.Getenv(_ENV_REPO_CUSTOM_HOOKS_PATH)
+ if !com.IsFile(customHooksPath) {
+ return nil
+ }
+
hookCmd := exec.Command(filepath.Join(customHooksPath, "update"), args...)
hookCmd.Stdout = os.Stdout
hookCmd.Stdin = os.Stdin
@@ -116,6 +125,10 @@ func runHookPostReceive(c *cli.Context) error {
setup(c, "hooks/post-receive.log")
customHooksPath := os.Getenv(_ENV_REPO_CUSTOM_HOOKS_PATH)
+ if !com.IsFile(customHooksPath) {
+ return nil
+ }
+
hookCmd := exec.Command(filepath.Join(customHooksPath, "post-receive"))
hookCmd.Stdout = os.Stdout
hookCmd.Stdin = os.Stdin