Skip to content

Commit

Permalink
fix appimage
Browse files Browse the repository at this point in the history
  • Loading branch information
amrbashir committed Nov 17, 2024
1 parent 4dfbb13 commit e9937b2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plugins/updater/tests/app-updater/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ fn main() {
}
Err(e) => {
eprintln!("{e}");
std::process::exit(1);
std::process::exit(3);
}
}
});
Expand Down
2 changes: 1 addition & 1 deletion plugins/updater/tests/app-updater/tests/update.rs
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ fn test_update(app: &Path, update_bundle: PathBuf, signature: PathBuf, target: &
// run app
let mut app_cmd = Command::new(app);
#[cfg(target_os = "linux")]
let mut app_cmd = if std::env::var("CI").map(|v| v == "true").unwrap_or_default() {
if std::env::var("CI").map(|v| v == "true").unwrap_or_default() {
app_cmd = Command::new("xvfb-run");
app_cmd.arg("--auto-servernum").arg(app);
};
Expand Down

0 comments on commit e9937b2

Please sign in to comment.