We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dfe0e9e commit 500f6d1Copy full SHA for 500f6d1
src/main.dev.ts
@@ -131,9 +131,11 @@ async function init(): Promise<void> {
131
const cliProcess = cli.process;
132
const { configClient, listenerClient } = cli;
133
134
- // Remove this if your app does not use auto updates
135
- // eslint-disable-next-line
136
- new AppUpdater();
+ if (process.platform !== 'darwin') {
+ // eslint-disable-next-line
+ new AppUpdater();
137
+ }
138
+
139
installExtension(REDUX_DEVTOOLS)
140
.then((name: string) => console.log(`Added Extension: ${name}`))
141
.catch((err: Error) => console.log('An error occurred: ', err));
0 commit comments