animeic-cd 1 year ago
parent
commit
11f3b22fc2
3 changed files with 6 additions and 4 deletions
  1. BIN
      app-uploader
  2. 3 3
      main.go
  3. 3 1
      utils/zip.go

BIN
app-uploader


+ 3 - 3
main.go

@@ -30,7 +30,7 @@ func main() {
 	// 复制文件到对应目录
 	switch appConf.Key {
 	case "queenter":
-		dest = uploadConf.Queenter.Dest + "/"
+		dest = uploadConf.Queenter.Dest
 		copyFiles = uploadConf.Queenter.Files
 		modify = uploadConf.Queenter.Modify
 	default:
@@ -62,12 +62,13 @@ func main() {
 	zipFile := fmt.Sprintf("%s-v%s-%s-%s-test.zip", appConf.Key, version, runtime.GOARCH, runtime.GOOS)
 	zipPath := fmt.Sprintf("output/%s", zipFile)
 	fmt.Println("压缩文件中...")
-	utils.Zip(zipPath, dest)
+	err = utils.Zip(zipPath, dest)
 	if err != nil {
 		fmt.Println("压缩文件出错")
 		return
 	}
 
+	fmt.Println("上传中...")
 	// 上传文件
 	huawei.InitConfig()
 	// http://spu3dv1.obs.cn-east-3.myhuaweicloud.com/pkg/lancher1.0.2.windows-amd64.zip
@@ -82,7 +83,6 @@ func main() {
 		fmt.Println("上传zipfile错误")
 		return
 	}
-	fmt.Println("上传中...")
 	fmt.Println("succ uploaded=>", obs.Url)
 
 	// 获取最新版本

+ 3 - 1
utils/zip.go

@@ -60,7 +60,9 @@ func walkFunc(rootPath string, zipWriter *zip.Writer) filepath.WalkFunc {
 		header.Method = zip.Deflate
 
 		// Set relative path of a file as the header name.
-		header.Name, err = filepath.Rel(filepath.Dir(rootPath), path)
+		header.Name, err = filepath.Rel(rootPath, path)
+		fmt.Println("--------------------------------------------------------")
+		fmt.Println(rootPath)
 		if err != nil {
 			return err
 		}