|
@@ -51,24 +51,21 @@ func main() {
|
|
|
fmt.Println("读取配置文件错误")
|
|
|
return
|
|
|
}
|
|
|
- uploadConf, err := utils.ReadConfig()
|
|
|
+ uploadConf, err := utils.ReadUpConf()
|
|
|
if err != nil {
|
|
|
fmt.Println("读取配置文件错误")
|
|
|
return
|
|
|
}
|
|
|
- dest := ""
|
|
|
- copyFiles := []string{}
|
|
|
- // 需要修改版本的文件
|
|
|
- modify := ""
|
|
|
- // 复制文件到对应目录
|
|
|
- switch appConf.Key {
|
|
|
- case "queenter":
|
|
|
- dest = uploadConf.Queenter.Dest
|
|
|
- copyFiles = uploadConf.Queenter.Files
|
|
|
- modify = uploadConf.Queenter.Modify
|
|
|
- default:
|
|
|
+
|
|
|
+ if _, ok := uploadConf[appConf.Key]; !ok {
|
|
|
+ fmt.Println("未找到该配置项")
|
|
|
return
|
|
|
}
|
|
|
+ // 复制文件到对应目录
|
|
|
+ dest := uploadConf[appConf.Key].Dest
|
|
|
+ copyFiles := uploadConf[appConf.Key].Files
|
|
|
+ modify := uploadConf[appConf.Key].Modify
|
|
|
+
|
|
|
// 复制文件到目标目录中
|
|
|
for _, file := range copyFiles {
|
|
|
err := utils.Copy(file, fmt.Sprintf("%s/%s", dest, file))
|