diff --git a/default_app/main.js b/default_app/main.js index 4bf4dac14ec..9c6636389c9 100644 --- a/default_app/main.js +++ b/default_app/main.js @@ -309,6 +309,12 @@ function loadApplicationByUrl (appUrl) { } function startRepl () { + if (process.platform === 'win32') { + console.error('Electron REPL not currently supported on Windows') + process.exit(1) + return + } + repl.start('> ').on('exit', () => { process.exit(0) })