Skip to content

Commit

Permalink
fix service config file path
Browse files Browse the repository at this point in the history
  • Loading branch information
volllly committed Feb 13, 2024
1 parent e76f146 commit 44125c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fiskaltrust.Launcher/Commands/InstallCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public static async Task<int> HandleAsync(CommonOptions commonOptions, CommonPro
"--cashbox-id", commonProperties.LauncherConfiguration.CashboxId!.Value.ToString(),
"--access-token", commonProperties.LauncherConfiguration.AccessToken!,
"--sandbox", commonProperties.LauncherConfiguration.Sandbox!.Value.ToString(),
"--launcher-configuration-file", commonOptions.LauncherConfigurationFile,
"--launcher-configuration-file", $"\"{commonOptions.LauncherConfigurationFile}\"",
}.Concat(installServices.SubArguments.Args));

ServiceInstaller? installer = null;
Expand Down

0 comments on commit 44125c6

Please sign in to comment.