Skip to content

Commit 0704d67

Browse files
committed
fix: do not set channel if executablePath is provided
1 parent 4c909bb commit 0704d67

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ const yargsInstance = yargs(hideBin(process.argv))
106106
.check(args => {
107107
// We can't set default in the options else
108108
// Yargs will complain
109-
if (!args.channel && !args.browserUrl) {
109+
if (!args.channel && !args.browserUrl && !args.executablePath) {
110110
args.channel = 'stable';
111111
}
112112
return true;

0 commit comments

Comments
 (0)