From 869300c848429d18734fd0d02f4c277f21357568 Mon Sep 17 00:00:00 2001 From: GeckoEidechse Date: Thu, 3 Aug 2023 14:24:47 +0200 Subject: style: Autoformat --- src-tauri/src/northstar/mod.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src-tauri/src') 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); -- cgit v1.2.3