Skip to content

Commit

Permalink
Merge pull request #5 from gokul1630/main
Browse files Browse the repository at this point in the history
removed appdir from fileName
  • Loading branch information
htdcx authored Jul 11, 2024
2 parents 524b15e + 18f2397 commit 8041a53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion opt/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ func (App) CreateBundle() {
}
}
uuidStr, _ := uuid.NewUUID()
fileName := rnDir + uuidStr.String() + ".zip"
fileName := uuidStr.String() + ".zip"
utils.Zip(rnDir+"build", fileName)
os.RemoveAll(rnDir + "build")
log.Println("Upload File...")
Expand Down

0 comments on commit 8041a53

Please sign in to comment.