Using direct link to git hosted logo for documentation
This commit is contained in:
14
build.rs
14
build.rs
@@ -9,18 +9,4 @@ fn main() {
|
||||
let mut make_all = Command::new("make");
|
||||
make_all.arg("all");
|
||||
println!("{:?}", make_all.output().unwrap());
|
||||
|
||||
let mut create_target_folder = Command::new("mkdir");
|
||||
create_target_folder.args([
|
||||
"-p",
|
||||
"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/assets/logo.svg"
|
||||
]);
|
||||
println!("{:?}", copy_logo.output().unwrap());
|
||||
}
|
||||
Reference in New Issue
Block a user