Skip to content

Commit

Permalink
fix compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
amrbashir committed Nov 17, 2024
1 parent 60728ea commit 4dfbb13
Showing 1 changed file with 1 addition and 1 deletion.
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 @@ -148,7 +148,7 @@ fn test_update(app: &Path, update_bundle: PathBuf, signature: PathBuf, target: &
#[cfg(target_os = "linux")]
let mut app_cmd = if std::env::var("CI").map(|v| v == "true").unwrap_or_default() {
app_cmd = Command::new("xvfb-run");
app_cmd.arg().arg("--auto-servernum").arg(app);
app_cmd.arg("--auto-servernum").arg(app);
};
app_cmd.env("TARGET", target);
let output = app_cmd.output().expect("failed to run app");
Expand Down

0 comments on commit 4dfbb13

Please sign in to comment.