From b8e71f65567aa9247bff3f2d066d3f54be77818a Mon Sep 17 00:00:00 2001 From: Renaud Lepage Date: Tue, 28 Jun 2022 19:16:14 -0700 Subject: [PATCH] explicitely use 3 --- build.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.rs b/build.rs index 0adcf8e..6102d31 100644 --- a/build.rs +++ b/build.rs @@ -4,7 +4,7 @@ use std::path::Path; fn compile_blueprint(path: T) -> Result { // python blueprint-compiler/blueprint-compiler.py compile ui/main.blp - let output = Command::new("python") + let output = Command::new("python3") .arg("blueprint-compiler/blueprint-compiler.py") .arg("compile") .arg(path.to_string())