Skip to content

Commit

Permalink
Same parameter order fix for gui app start
Browse files Browse the repository at this point in the history
  • Loading branch information
AlmightyLks committed Feb 26, 2023
1 parent d0dc2ec commit 87351f2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public static ApplicationLauncher FromLocationAndArguments(string location, stri
/// </summary>
public static ApplicationLauncher FromApplicationConfig(PathTuple<ApplicationConfig> config)
{
return FromLocationAndArguments($"{ApplicationConfig.GetAbsoluteAppLocation(config)}", config.Config.WorkingDirectory, $"{config.Config.AppArguments}");
return FromLocationAndArguments($"{ApplicationConfig.GetAbsoluteAppLocation(config)}", $"{config.Config.AppArguments}", config.Config.WorkingDirectory);
}

/// <summary>
Expand Down

0 comments on commit 87351f2

Please sign in to comment.