From 40fe081962feb5be06c1a25df2a79630c05c7102 Mon Sep 17 00:00:00 2001 From: Henrique Dias Date: Fri, 1 Sep 2017 13:26:04 +0100 Subject: [PATCH] fix error Former-commit-id: 6f9d7c0b4ee819f737395ec1b721a88be1e6c5e6 [formerly 0489f9f724d1165bf63c45df84398f9631ed9833] [formerly 5a3ffb16e3a801dd811b3d05ce853413d1da2ae6 [formerly 5c2166bc1519cc058f2103931efa2b7d51da7a96]] Former-commit-id: 4672f5e091c847482af0ae4741bcb809134a1559 [formerly 96ecde75a3d61b9cc1e77eae6254166ec53b902c] Former-commit-id: 683218b398c699cd0f6ce15bebb6385d20eee390 --- cmd/filemanager/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/filemanager/main.go b/cmd/filemanager/main.go index 2524547b..b79bfc89 100644 --- a/cmd/filemanager/main.go +++ b/cmd/filemanager/main.go @@ -50,7 +50,7 @@ func init() { flag.StringVarP(&database, "database", "d", "./filemanager.db", "Database file") flag.StringVarP(&logfile, "log", "l", "stdout", "Errors logger; can use 'stdout', 'stderr' or file") flag.StringVarP(&scope, "scope", "s", ".", "Default scope option for new users") - flag.StringVarP(&baseurl, "baseurl", "", "Base URL") + flag.StringVarP(&baseurl, "baseurl", "b", "", "Base URL") flag.StringVar(&commands, "commands", "git svn hg", "Default commands option for new users") flag.BoolVar(&allowCommands, "allow-commands", true, "Default allow commands option for new users") flag.BoolVar(&allowEdit, "allow-edit", true, "Default allow edit option for new users")