diff options
Diffstat (limited to 'routers/repo/http.go')
-rw-r--r-- | routers/repo/http.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/routers/repo/http.go b/routers/repo/http.go index e6390bc7c5..8164f80962 100644 --- a/routers/repo/http.go +++ b/routers/repo/http.go @@ -496,6 +496,7 @@ func updateServerInfo(gitBinPath, dir string) []byte { return gitCommand(gitBinPath, dir, args...) } +// FIXME: use process module func gitCommand(gitBinPath, dir string, args ...string) []byte { command := exec.Command(gitBinPath, args...) command.Dir = dir |