Merge pull request #243 from Zagrios/bugfix/username-with-spaces-not-supported/241

[bugfix] Fix username with spaces not supported
This commit is contained in:
MathieuG-P
2023-06-11 16:51:27 +02:00
committed by GitHub
+1 -1
View File
@@ -111,7 +111,7 @@ export class BSInstallerService{
`-app ${BS_APP_ID}`,
`-depot ${BS_DEPOT}`,
`-manifest ${bsVersion.BSManifest}`,
`-username ${downloadInfos.username}`,
`-username \"${downloadInfos.username}\"`,
`-dir \"${this.localVersionService.getVersionFolder(downloadVersion)}\"`
],
{shell: true, cwd: this.installLocationService.versionsDirectory}