We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b494685 commit e7c6773Copy full SHA for e7c6773
src/backend/launcher.ts
@@ -919,6 +919,10 @@ async function runWineCommand({
919
const umuSupported = await isUmuSupported(wineVersion.type)
920
const runnerBin = umuSupported ? await getUmuPath() : wineBin
921
922
+ if (wineVersion.type === 'proton' && !umuSupported) {
923
+ commandParts.unshift(protonVerb)
924
+ }
925
+
926
logDebug(['Running Wine command:', commandParts.join(' ')], LogPrefix.Backend)
927
928
return new Promise<{ stderr: string; stdout: string }>((res) => {
0 commit comments