This is an automated email from the ASF dual-hosted git repository.
linkinstar pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-answer.git
The following commit(s) were added to refs/heads/dev by this push:
new 79454f34 fix: typo
79454f34 is described below
commit 79454f348070feaff9180346b8224c3063f2403e
Author: Luffy <[email protected]>
AuthorDate: Mon Dec 30 15:58:51 2024 +0800
fix: typo
---
cmd/command.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/cmd/command.go b/cmd/command.go
index 65710e6b..c145b3b5 100644
--- a/cmd/command.go
+++ b/cmd/command.go
@@ -72,7 +72,7 @@ func init() {
configCmd.Flags().StringSliceVarP(&configFields, "with", "w",
[]string{}, "the fields that need to be set to the default value, eg: -w
allow_password_login")
- i18nCmd.Flags().StringVarP(&i18nSourcePath, "source", "s", "", "i18n
source path, eg: -f ./i18n/source")
+ i18nCmd.Flags().StringVarP(&i18nSourcePath, "source", "s", "", "i18n
source path, eg: -s ./i18n/source")
i18nCmd.Flags().StringVarP(&i18nTargetPath, "target", "t", "", "i18n
target path, eg: -t ./i18n/target")