We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c88af6 commit 73f45a1Copy full SHA for 73f45a1
lib/gradle.js
@@ -75,7 +75,7 @@ export function provideBuilder() {
75
}
76
});
77
78
- let wrapperFile = /^win/.test(process.platform) ? 'gradlew.bat' : 'gradlew';
+ const wrapperFile = /^win/.test(process.platform) ? 'gradlew.bat' : 'gradlew';
79
let executable;
80
return statAsync(path.join(this.cwd, wrapperFile)).then(() => {
81
executable = path.join(this.cwd, wrapperFile);
0 commit comments