Eliminate todo!()s

This commit is contained in:
Shunsuke Shibayama 2022-12-20 18:47:50 +09:00
parent 5b01c048af
commit 7d25c1b54d
5 changed files with 15 additions and 15 deletions

View file

@ -11,7 +11,7 @@ fn main() -> std::io::Result<()> {
let git_hash_short = String::from_utf8_lossy(&output.stdout);
let now = datetime::now();
#[allow(deprecated)]
let erg_path = std::env::home_dir().unwrap().join(".erg");
let erg_path = std::env::home_dir().unwrap_or_default().join(".erg");
println!("cargo:rustc-env=GIT_HASH_SHORT={git_hash_short}");
println!("cargo:rustc-env=BUILD_DATE={now}");
println!("cargo:rustc-env=CARGO_ERG_PATH={}", erg_path.display());