Skip to content

Commit 4cf1a6d

Browse files
authored
Fix the app argument with WSL (#295)
1 parent 05ba9e1 commit 4cf1a6d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ const baseOpen = async options => {
120120
if (app) {
121121
cliArguments.push('-a', app);
122122
}
123-
} else if (platform === 'win32' || (isWsl && !isDocker())) {
123+
} else if (platform === 'win32' || (isWsl && !isDocker() && !app)) {
124124
const mountPoint = await getWslDrivesMountPoint();
125125

126126
command = isWsl ?

0 commit comments

Comments
 (0)