diff options
author | GeckoEidechse <gecko.eidechse+git@pm.me> | 2023-08-03 14:24:47 +0200 |
---|---|---|
committer | GeckoEidechse <gecko.eidechse+git@pm.me> | 2023-08-03 14:24:47 +0200 |
commit | 869300c848429d18734fd0d02f4c277f21357568 (patch) | |
tree | f58f73aea45474cd715871e41e99b33982bc9e44 | |
parent | df5978f8bdd1ba6575e6062bc6721b30e7010e79 (diff) | |
download | FlightCore-869300c848429d18734fd0d02f4c277f21357568.tar.gz FlightCore-869300c848429d18734fd0d02f4c277f21357568.zip |
style: Autoformat
-rw-r--r-- | src-tauri/src/northstar/mod.rs | 6 |
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); |