12 lines
286 B
Rust
12 lines
286 B
Rust
|
//! Build script for BurritOS.
|
||
|
//!
|
||
|
//! Moves files from the assets folder to the target directory
|
||
|
//! and runs `make all`.
|
||
|
|
||
|
use std::process::Command;
|
||
|
|
||
|
fn main() {
|
||
|
let mut make_all = Command::new("make");
|
||
|
make_all.arg("all");
|
||
|
println!("{:?}", make_all.output().unwrap());
|
||
|
}
|