aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeckoEidechse <gecko.eidechse+git@pm.me>2023-08-03 14:24:47 +0200
committerGeckoEidechse <gecko.eidechse+git@pm.me>2023-08-03 14:24:47 +0200
commit869300c848429d18734fd0d02f4c277f21357568 (patch)
treef58f73aea45474cd715871e41e99b33982bc9e44
parentdf5978f8bdd1ba6575e6062bc6721b30e7010e79 (diff)
downloadFlightCore-869300c848429d18734fd0d02f4c277f21357568.tar.gz
FlightCore-869300c848429d18734fd0d02f4c277f21357568.zip
style: Autoformat
-rw-r--r--src-tauri/src/northstar/mod.rs6
1 files changed, 5 insertions, 1 deletions
diff --git a/src-tauri/src/northstar/mod.rs b/src-tauri/src/northstar/mod.rs
index f76d105d..e79123fd 100644
--- a/src-tauri/src/northstar/mod.rs
+++ b/src-tauri/src/northstar/mod.rs
@@ -119,7 +119,11 @@ pub fn launch_northstar(
// We cannot add the params directly because of limitations with cmd.exe
// https://stackoverflow.com/questions/9964865/c-system-not-working-when-there-are-spaces-in-two-different-parameters/9965141#9965141
- let launch_parameters = format!("{} {}", ns_profile_arg, launch_parameters.unwrap_or_default());
+ let launch_parameters = format!(
+ "{} {}",
+ ns_profile_arg,
+ launch_parameters.unwrap_or_default()
+ );
let ns_params: Vec<&str> = launch_parameters.split_whitespace().collect();
dbg!(ns_params.clone());
args.extend(ns_params);