Skip to content

Commit 9bf83c4

Browse files
chore: bump version
1 parent e74662d commit 9bf83c4

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

resources/dist.rc

33 Bytes
Binary file not shown.

src/celemod-ui

src/main.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -676,6 +676,7 @@ impl sciter::EventHandler for Handler {
676676
}
677677
}
678678

679+
679680
fn main() {
680681
// parse /update command line argument
681682
let args: Vec<String> = std::env::args().collect();
@@ -687,7 +688,7 @@ fn main() {
687688
let current_exe = current_exe.to_string_lossy().to_string();
688689
let new_exe = &args[2];
689690
std::fs::remove_file(new_exe).unwrap();
690-
std::fs::rename(current_exe, new_exe).unwrap();
691+
std::fs::copy(current_exe, new_exe).unwrap();
691692
std::process::Command::new(new_exe).spawn().unwrap();
692693
return;
693694
}

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.0.1a
1+
0.0.1

0 commit comments

Comments
 (0)