1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
  | 
diff --git a/cmd/ugitd/args.go b/cmd/ugitd/args.go
index 24109585663c4b7156f95becaddbb4609d543d39..5dd586ad4dc96aaabe420f74e02da5e4f4b09777 100644
--- a/cmd/ugitd/args.go
+++ b/cmd/ugitd/args.go
@@ -101,6 +101,7 @@ 		return nil
 	})
 	fs.BoolVar(&c.Log.JSON, "log.json", c.Log.JSON, "Print logs in JSON(L) format")
 	fs.StringVar(&c.RepoDir, "repo-dir", c.RepoDir, "Path to directory containing repositories")
+	fs.BoolVar(&c.ShowPrivate, "show-private", c.ShowPrivate, "Show private repos in web interface")
 	fs.BoolVar(&c.SSH.Enable, "ssh.enable", c.SSH.Enable, "Enable SSH server")
 	fs.StringVar(&c.SSH.AuthorizedKeys, "ssh.authorized-keys", c.SSH.AuthorizedKeys, "Path to authorized_keys")
 	fs.StringVar(&c.SSH.CloneURL, "ssh.clone-url", c.SSH.CloneURL, "SSH clone URL base")
  |