Merge commit '258b15c506' into sync-from-ra

This commit is contained in:
Laurențiu Nicola 2023-09-18 12:32:37 +03:00
parent 7e786ea4cf
commit bcfc997eac
195 changed files with 5773 additions and 2750 deletions

View file

@ -71,6 +71,10 @@ fn main() {
.arg("--target-dir")
.arg(&target_dir);
if let Ok(target) = std::env::var("TARGET") {
cmd.args(["--target", &target]);
}
println!("Running {cmd:?}");
let output = cmd.output().unwrap();