[bugfix] Put username in quotes for depot-downloader

This commit is contained in:
MathieuG-P
2023-06-11 16:50:32 +02:00
parent 32665e4299
commit 052c7938da
+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}