fix compilation

This commit is contained in:
amrbashir
2024-11-17 04:54:07 +02:00
parent 60728ea22a
commit 4dfbb13520
@@ -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");