forked from Rativel/BurritOS
Fixed logo now showing up in doc
This commit is contained in:
4
build.rs
4
build.rs
@@ -13,14 +13,14 @@ fn main() {
|
||||
let mut create_target_folder = Command::new("mkdir");
|
||||
create_target_folder.args([
|
||||
"-p",
|
||||
"target/doc/burritos/assets/"
|
||||
"target/doc/assets/"
|
||||
]);
|
||||
println!("{:?}", create_target_folder.output().unwrap());
|
||||
|
||||
let mut copy_logo = Command::new("cp");
|
||||
copy_logo.args([
|
||||
"assets/logo/logo.svg",
|
||||
"target/doc/burritos/assets/logo.svg"
|
||||
"target/doc/assets/logo.svg"
|
||||
]);
|
||||
println!("{:?}", copy_logo.output().unwrap());
|
||||
}
|
||||
Reference in New Issue
Block a user