feat(upgrade): replace i18n bundle using the upgrade command

This commit is contained in:
LinkinStars 2023-05-11 11:36:23 +08:00
parent 0aa98fb2af
commit ea54aa75db
2 changed files with 8 additions and 3 deletions

View File

@ -101,6 +101,7 @@ To run answer, use:
Long: `upgrade Answer version`,
Run: func(_ *cobra.Command, _ []string) {
cli.FormatAllPath(dataDirPath)
cli.InstallI18nBundle(true)
c, err := conf.ReadConfig(cli.GetConfigFilePath())
if err != nil {
fmt.Println("read config failed: ", err.Error())

View File

@ -40,7 +40,7 @@ func FormatAllPath(dataDirPath string) {
func InstallAllInitialEnvironment(dataDirPath string) {
FormatAllPath(dataDirPath)
installUploadDir()
installI18nBundle()
InstallI18nBundle(false)
fmt.Println("install all initial environment done")
}
@ -79,7 +79,7 @@ func installUploadDir() {
}
}
func installI18nBundle() {
func InstallI18nBundle(replace bool) {
fmt.Println("[i18n] try to install i18n bundle...")
if err := dir.CreateDirIfNotExist(I18nPath); err != nil {
fmt.Println(err.Error())
@ -98,7 +98,11 @@ func installI18nBundle() {
if err != nil {
continue
}
if dir.CheckFileExist(path) {
exist := dir.CheckFileExist(path)
if exist && !replace {
continue
}
if exist {
fmt.Printf("[i18n] install %s file exist, try to replace it\n", item.Name())
if err = os.Remove(path); err != nil {
fmt.Println(err)