Skip to content

Commit

Permalink
🚧 version-tag: assume its testing if not found
Browse files Browse the repository at this point in the history
  • Loading branch information
vnepogodin committed Nov 10, 2024
1 parent 3f46f90 commit b5c88ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ struct Versions {

fn outdated_version_check(message: String) {
let edition_tag = fs::read_to_string("/etc/edition-tag").unwrap_or("desktop".to_string());
let version_tag = fs::read_to_string("/etc/version-tag").unwrap_or_default();
let version_tag = fs::read_to_string("/etc/version-tag").unwrap_or("testing".to_string());

let window_ref = unsafe { &G_HELLO_WINDOW.as_ref().unwrap().window };

Expand Down

0 comments on commit b5c88ed

Please sign in to comment.