mirror of
https://github.com/an-anime-team/sleepy-launcher.git
synced 2024-11-21 20:27:35 +03:00
Merge branch 'fix-python' into 'main'
explicitely use 3 See merge request an-anime-team/an-anime-game-launcher-gtk!1
This commit is contained in:
commit
0f94fef38d
1 changed files with 1 additions and 1 deletions
2
build.rs
2
build.rs
|
@ -4,7 +4,7 @@ use std::path::Path;
|
|||
|
||||
fn compile_blueprint<T: ToString>(path: T) -> Result<String, String> {
|
||||
// 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())
|
||||
|
|
Loading…
Reference in a new issue