X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/8b95d2e5cb658d61d68262df278653261bd9791c..b3b9aeee4dba20bcddd8cb4ee2cdcd3c8a34eaec:/services/arv-git-httpd/main.go diff --git a/services/arv-git-httpd/main.go b/services/arv-git-httpd/main.go index 0e92393e29..98695c9a9d 100644 --- a/services/arv-git-httpd/main.go +++ b/services/arv-git-httpd/main.go @@ -19,7 +19,7 @@ func init() { flag.StringVar(&theConfig.Addr, "address", "0.0.0.0:80", "Address to listen on, \"host:port\".") flag.StringVar(&theConfig.GitCommand, "git-command", "/usr/bin/git", - "Path to git executable. Each authenticated request will execute this program with a single argument, \"http-backend\".") + "Path to git or gitolite-shell executable. Each authenticated request will execute this program with a single argument, \"http-backend\".") cwd, err := os.Getwd() if err != nil { log.Fatalln("Getwd():", err) @@ -43,6 +43,7 @@ func main() { log.Fatal(err) } log.Println("Listening at", srv.Addr) + log.Println("Repository root", theConfig.Root) if err := srv.Wait(); err != nil { log.Fatal(err) }