Fix that compiler warning

main
Elijah C. Voigt 1 year ago
parent efefb46699
commit 92fdacc676

@ -22,7 +22,7 @@ use crate::prelude::*;
fn main() { fn main() {
if std::env::var_os("CARGO_MANIFEST_DIR").is_none() { if std::env::var_os("CARGO_MANIFEST_DIR").is_none() {
std::env::set_current_dir(std::env::current_exe().unwrap().parent().unwrap()); let _ = std::env::set_current_dir(std::env::current_exe().unwrap().parent().unwrap());
} }
let mut app = App::new(); let mut app = App::new();

Loading…
Cancel
Save