Skip to content

Commit 1fff8d6

Browse files
committed
Fixed Minor Typo
1 parent 8521166 commit 1fff8d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tasks/toolchain_builder.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ function getPythonExecutable() {
340340
const result = childProcess.spawnSync(executable, args);
341341
return (result !== false && result !== null &&
342342
(result.stdout.toString().indexOf('3.5') >= 0 || result.stdout.toString().indexOf('3.6') >= 0 ||
343-
result.stdout.toString().indexOf('3.7') >= 0 || result.stdout.toString().indexOf('3.8') >= 0) ||
343+
result.stdout.toString().indexOf('3.7') >= 0 || result.stdout.toString().indexOf('3.8') >= 0 ||
344344
result.toString().indexOf('3.9') >= 0));
345345
} catch (e) {
346346
return false;

0 commit comments

Comments
 (0)