Skip to content

Commit

Permalink
Add missing let
Browse files Browse the repository at this point in the history
  • Loading branch information
DamianReeves committed Sep 6, 2024
1 parent 76929ae commit 76de7c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gulpfile.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ async function testCreateCSV(cb) {
if (!shell.which('bash')) {
console.log("Automatically creating CSV files is not available on this platform");
} else {
code_no = shell.exec('bash ./create_csv_files.sh', { cwd: './tests-integration/spark/elm-tests/tests' }).code
let code_no = shell.exec('bash ./create_csv_files.sh', { cwd: './tests-integration/spark/elm-tests/tests' }).code
if (code_no != 0) {
console.error('ERROR: CSV files cannot be created')
return false;
Expand Down

0 comments on commit 76de7c6

Please sign in to comment.