We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38208a9 commit f711b65Copy full SHA for f711b65
src/cli/index.ts
@@ -42,7 +42,10 @@ if (subcommand === "run") {
42
process.argv.splice(2, 1);
43
// eslint-disable-next-line @typescript-eslint/no-require-imports
44
require("./api");
45
-} else if (subcommand === "desktop" || (isElectron && (subcommand === undefined || isElectronLaunchArg))) {
+} else if (
46
+ subcommand === "desktop" ||
47
+ (isElectron && (subcommand === undefined || isElectronLaunchArg))
48
+) {
49
// Explicit `mux desktop`, or Electron runtime with no subcommand / Electron launch args
50
launchDesktop();
51
} else {
0 commit comments