Skip to content

Commit

Permalink
Fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
toshi0383 committed Apr 26, 2017
1 parent e1f5c8c commit e515645
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -75,11 +75,11 @@ func _execute(scriptFilePath string, appOnly bool) {
bash, _ := basher.NewContext("/bin/bash", false)
bash.Source(scriptFilePath, Asset)
if appOnly {
status, err := bash.Run("main", []string{ipaPath})
status, err := bash.Run("main", []string{ipaPath, "true"})
assert(err)
os.Exit(status)
} else {
status, err := bash.Run("main", []string{ipaPath, "true"})
status, err := bash.Run("main", []string{ipaPath})
assert(err)
os.Exit(status)
}
Expand Down

0 comments on commit e515645

Please sign in to comment.