Skip to content
Snippets Groups Projects
Commit 37c9250a authored by Jeremy Soller's avatar Jeremy Soller
Browse files

Fix output of build script

parent 23e30c14
No related branches found
No related tags found
No related merge requests found
......@@ -106,14 +106,15 @@ mod gen {
Ok(v) => fill_from_location(&mut f, Path::new(&v)).unwrap(),
Err(e) => {
f.write_all(
b" files.clear();" // Silence mutability warning
).unwrap();
b" files.clear();" // Silence mutability warning
).unwrap();
println!("cargo:warning=location not found: {}, please set proper INITFS_FOLDER.", e);
}
}
f.write_all(b" files
f.write_all(b"
files
}
}
").unwrap();
").unwrap();
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment