Skip to content

Commit 8791224

Browse files
committed
fix: windows launch command
1 parent b57c6ce commit 8791224

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backend/launcher.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -810,7 +810,7 @@ async function callRunner(
810810
shouldUsePowerShell = isWindows && powershellExists
811811
}
812812

813-
if (shouldUsePowerShell && runner.name !== 'gog') {
813+
if (shouldUsePowerShell && !['gog', 'steam'].includes(runner.name)) {
814814
const argsAsString = commandParts
815815
.map((part) => part.replaceAll('\\', '\\\\'))
816816
.map((part) => `"\`"${part}\`""`)

0 commit comments

Comments
 (0)