Skip to content

Commit

Permalink
fix: update error message to display android directory (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
Szabadember committed May 6, 2020
1 parent 042b931 commit c50d992
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ func main() {
// PROJECT_ROOT/platforms/android/build/outputs/apk/debug/app-debug.apk
androidOutputDir := filepath.Join(workDir, "platforms", "android")
if exist, err := pathutil.IsDirExists(androidOutputDir); err != nil {
fail("Failed to check if dir (%s) exist, error: %s", iosOutputDir, err)
fail("Failed to check if dir (%s) exist, error: %s", androidOutputDir, err)
} else if exist {
androidOutputDirExist = true

Expand Down

0 comments on commit c50d992

Please sign in to comment.