Skip to content

Commit 85028ce

Browse files
authored
Use python3 for building ninja in all cases (#5692)
1 parent 1aebb34 commit 85028ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/install.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ function provideNinja() {
5353
stdio: [0, 1, 2],
5454
});
5555
console.log("No prebuilt Ninja, building Ninja now");
56-
var build_ninja_command = "./configure.py --bootstrap";
56+
var build_ninja_command = "python3 ./configure.py --bootstrap";
5757
child_process.execSync(build_ninja_command, {
5858
cwd: ninja_source_dir,
5959
stdio: [0, 1, 2],

0 commit comments

Comments
 (0)