14 lines
497 B
Rust
14 lines
497 B
Rust
use std::process::Command;
|
|
|
|
fn main() {
|
|
// let _ = Command::new("sh")
|
|
// .args(&["-c", "cd resources && gtk4-builder-tool simplify --3to4 snespatcher.ui --replace"])
|
|
// .output()
|
|
// .expect("failed to execute process");
|
|
|
|
let _ = Command::new("sh")
|
|
.args(&["-c", "cd resources && glib-compile-resources resources.xml"])
|
|
.output()
|
|
.expect("failed to execute process");
|
|
}
|