mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
Pass launcher args into Wabbajack.exe during launching
This commit is contained in:
parent
aaa2275032
commit
0a731d2f90
@ -114,6 +114,7 @@ namespace Wabbajack.Launcher
|
||||
var info = new ProcessStartInfo
|
||||
{
|
||||
FileName = Path.Combine(wjFolder, "Wabbajack.exe"),
|
||||
Arguments = string.Join(" ", Environment.GetCommandLineArgs().Skip(1).Select(s => s.Contains(' ') ? '\"' + s + '\"' : s)),
|
||||
WorkingDirectory = wjFolder,
|
||||
};
|
||||
Process.Start(info);
|
||||
|
Loading…
Reference in New Issue
Block a user