Skip to content

Commit 73f45a1

Browse files
committed
Use const where appropriate
1 parent 5c88af6 commit 73f45a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/gradle.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ export function provideBuilder() {
7575
}
7676
});
7777

78-
let wrapperFile = /^win/.test(process.platform) ? 'gradlew.bat' : 'gradlew';
78+
const wrapperFile = /^win/.test(process.platform) ? 'gradlew.bat' : 'gradlew';
7979
let executable;
8080
return statAsync(path.join(this.cwd, wrapperFile)).then(() => {
8181
executable = path.join(this.cwd, wrapperFile);

0 commit comments

Comments
 (0)