|
@@ -4,16 +4,43 @@ import (
|
|
|
"app-uploader/huawei"
|
|
|
"app-uploader/utils"
|
|
|
"fmt"
|
|
|
- "os"
|
|
|
+ "path/filepath"
|
|
|
"runtime"
|
|
|
"strconv"
|
|
|
"strings"
|
|
|
+
|
|
|
+ "github.com/jessevdk/go-flags"
|
|
|
)
|
|
|
|
|
|
+var GAppOption = &AppOption{}
|
|
|
+
|
|
|
+// short只能是一个字符
|
|
|
+type AppOption struct {
|
|
|
+ Unzip string `short:"d" long:"unzip" description:"unzip file"`
|
|
|
+}
|
|
|
+
|
|
|
+func (o *AppOption) Parse() {
|
|
|
+ _, err := flags.NewParser(o, flags.Default|flags.IgnoreUnknown).Parse()
|
|
|
+ fmt.Println(err)
|
|
|
+}
|
|
|
+
|
|
|
func main() {
|
|
|
// 读取package.json版本数据
|
|
|
// 复制app.json文件和logo文件
|
|
|
// 读取配置
|
|
|
+ // 解压工具 app-uploader.exe -d output/queenter-v1.1.2-amd64-windows.zip
|
|
|
+ // !压缩后的文件在windows上用软件打开有问题,但在linux上解压或者unzip正常
|
|
|
+ // utils.Unzip(zipPath,filepath.Base(zipFile),nil)
|
|
|
+ GAppOption.Parse()
|
|
|
+ if len(GAppOption.Unzip) > 0 {
|
|
|
+ dest := fmt.Sprintf("output/%s", filepath.Base(GAppOption.Unzip))
|
|
|
+ err := utils.Unzip(GAppOption.Unzip, dest, nil)
|
|
|
+ if err != nil {
|
|
|
+ fmt.Println("unzip err:", err)
|
|
|
+ return
|
|
|
+ }
|
|
|
+ return
|
|
|
+ }
|
|
|
appConf, err := utils.ReadAppConfig()
|
|
|
if err != nil {
|
|
|
fmt.Println("读取配置文件错误")
|
|
@@ -106,8 +133,4 @@ func main() {
|
|
|
return
|
|
|
}
|
|
|
fmt.Println("上传成功")
|
|
|
- // !压缩后的文件在windows上用软件打开有问题,但在linux上解压或者unzip正常
|
|
|
- // utils.Unzip(zipPath,filepath.Base(zipFile),nil)
|
|
|
- os.Remove(zipPath)
|
|
|
-
|
|
|
}
|