Update error message

This commit is contained in:
Richard Feldman 2022-11-22 20:55:05 -05:00
parent 69a7c3ea15
commit a38532ea4b
No known key found for this signature in database
GPG Key ID: F1F21AA5B1D9E43B

View File

@ -138,7 +138,7 @@ pub fn get_lib_dir() -> PathBuf {
let dir = PathBuf::from(env::var_os("OUT_DIR").unwrap()).join("bitcode");
// create dir if it does not exist
fs::create_dir_all(&dir).expect("Failed to make lib dir.");
fs::create_dir_all(&dir).expect("Failed to make $OUT_DIR/bitcode dir.");
dir
}