Skip to content

Commit fb19e71

Browse files
tobil4skjoshtynjala
authored andcommitted
Fix --no-output behaviour in android build
Returning here means other architecture builds won't run. If we continue instead, all architecture builds will finish first before the function exits.
1 parent 6d66a82 commit fb19e71

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/platforms/AndroidPlatform.hx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ class AndroidPlatform extends PlatformTarget
208208

209209
System.runCommand("", "haxe", haxeParams);
210210

211-
if (noOutput) return;
211+
if (noOutput) continue;
212212

213213
CPPHelper.compile(project, targetDirectory + "/obj", cppParams);
214214

0 commit comments

Comments
 (0)