diff options
Diffstat (limited to 'PC/venvlauncher.c')
-rw-r--r-- | PC/venvlauncher.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/PC/venvlauncher.c b/PC/venvlauncher.c index fe97d32..b1c8d07 100644 --- a/PC/venvlauncher.c +++ b/PC/venvlauncher.c @@ -484,8 +484,8 @@ process(int argc, wchar_t ** argv) // We do not update argv[0] to point at the target runtime, and so we do not // pass through our original argv[0] in an environment variable. - //exitCode = smuggle_path(); - //if (exitCode) return exitCode; + exitCode = smuggle_path(); + if (exitCode) return exitCode; exitCode = launch(home_path, GetCommandLineW()); return exitCode; |