()
| 66 | } |
| 67 | |
| 68 | func installUploadDir() { |
| 69 | fmt.Println("[upload-dir] try to install...") |
| 70 | if err := dir.CreateDirIfNotExist(path.UploadFilePath); err != nil { |
| 71 | fmt.Printf("[upload-dir] install fail %s\n", err.Error()) |
| 72 | } else { |
| 73 | fmt.Printf("[upload-dir] install success, upload directory is %s\n", path.UploadFilePath) |
| 74 | } |
| 75 | } |
| 76 | |
| 77 | func InstallI18nBundle(replace bool) { |
| 78 | fmt.Println("[i18n] try to install i18n bundle...") |
no test coverage detected