Skip to content

Commit c929347

Browse files
authored
Fix launching electron app using CLI (#1319)
1 parent 248aa98 commit c929347

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/redux-devtools-cli/src/bin/openApp.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export default async function openApp(app: true | string, options: Options) {
1212
try {
1313
const port = options.port ? `--port=${options.port}` : '';
1414
// eslint-disable-next-line @typescript-eslint/no-var-requires
15-
spawn.sync(require('electron') as string, [
15+
spawn(require('electron') as string, [
1616
path.join(
1717
path.dirname(fileURLToPath(import.meta.url)),
1818
'..',

0 commit comments

Comments
 (0)