From 79454f348070feaff9180346b8224c3063f2403e Mon Sep 17 00:00:00 2001 From: Luffy <52o@qq52o.cn> Date: Mon, 30 Dec 2024 15:58:51 +0800 Subject: [PATCH] fix: typo --- cmd/command.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/command.go b/cmd/command.go index 65710e6b4..c145b3b5e 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")