Skip to content

Commit

Permalink
stop on error when compiling (cocos#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
PatriceJiang authored May 25, 2023
1 parent 412ecfd commit b0f0710
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/native-pack-tool/source/platforms/android-hmi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ export class AndroidHMIPackTool extends NativePackTool {
} catch (e) {
console.error(`Failed to compile dynamic plugin!`);
console.error(e);
return false;
throw e;
}
return true;
}
Expand Down

0 comments on commit b0f0710

Please sign in to comment.