There was an error while loading. Please reload this page.
1 parent 809e91f commit 4947bb0Copy full SHA for 4947bb0
1 file changed
scripts/native-pack-tool/source/platforms/android.ts
@@ -77,6 +77,8 @@ export class AndroidPackTool extends NativePackTool {
77
let gradle = 'gradlew';
78
if (process.platform === 'win32') {
79
gradle += '.bat';
80
+ } else {
81
+ gradle = './' + gradle;
82
}
83
84
let buildMode = '';
0 commit comments