Skip to content

Commit

Permalink
Revision 0.20.1
Browse files Browse the repository at this point in the history
  • Loading branch information
cosmic-zip committed Oct 29, 2024
1 parent df0bae6 commit e39e897
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions witch_craft/src/core/core.rs
Original file line number Diff line number Diff line change
Expand Up @@ -684,14 +684,14 @@ pub fn get_os_env(key: &str) -> String {
match env::var_os(key) {
Some(val) => format!("{:?}", val).replace("\"", ""),
None => {
raise("Env key not found", "fail");
// raise("Env key not found", "fail");
String::new()
}
}
}

/// Show witch_craft software version!
pub fn show_version() -> i32 {
raise("Version: 0.20.0 by cosmic-zip", "");
raise("Version: 0.20.1 by cosmic-zip", "");
return 0;
}

0 comments on commit e39e897

Please sign in to comment.