Skip to content

Commit

Permalink
Merge pull request #30 from korbinian90/patch-1
Browse files Browse the repository at this point in the history
Fix server launch arguments formatting (for windows);
  • Loading branch information
iishiishii authored Nov 14, 2023
2 parents 2c4f2a5 + 1348db6 commit c1371b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ function createLaunchScript(
const tag = config.ConfigToml.jupyter_neurodesk_version;

if (serverInfo.serverArgs) {
launchArgs.push(` -v ${serverInfo.serverArgs.replace(/\\/g, '/')}`);
launchArgs.push(` -v "${serverInfo.serverArgs}"`);
}

for (const arg of serverLaunchArgsFixed) {
Expand Down

0 comments on commit c1371b5

Please sign in to comment.