Skip to content

Commit 4947bb0

Browse files
authored
fix mac gradlew path (#12800)
1 parent 809e91f commit 4947bb0

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

  • scripts/native-pack-tool/source/platforms

scripts/native-pack-tool/source/platforms/android.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,8 @@ export class AndroidPackTool extends NativePackTool {
7777
let gradle = 'gradlew';
7878
if (process.platform === 'win32') {
7979
gradle += '.bat';
80+
} else {
81+
gradle = './' + gradle;
8082
}
8183

8284
let buildMode = '';

0 commit comments

Comments
 (0)