|
@@ -33,7 +33,12 @@ func main() {
|
|
|
// utils.Unzip(zipPath,filepath.Base(zipFile),nil)
|
|
|
GAppOption.Parse()
|
|
|
if len(GAppOption.Unzip) > 0 {
|
|
|
- dest := fmt.Sprintf("output/%s", filepath.Base(GAppOption.Unzip))
|
|
|
+ fileName := filepath.Base(GAppOption.Unzip)
|
|
|
+ ext := filepath.Ext(fileName)
|
|
|
+ fileDir := strings.TrimSuffix(fileName, ext)
|
|
|
+ fmt.Println(GAppOption.Unzip)
|
|
|
+ dest := fmt.Sprintf("%s/%s", filepath.Dir(GAppOption.Unzip), fileDir)
|
|
|
+ fmt.Println("unzip dir:", dest)
|
|
|
err := utils.Unzip(GAppOption.Unzip, dest, nil)
|
|
|
if err != nil {
|
|
|
fmt.Println("unzip err:", err)
|