From e79b0eb0c960686499a516ec0a0648ee64fd9a0b Mon Sep 17 00:00:00 2001 From: Labhansh Agrawal Date: Tue, 1 Feb 2022 14:17:37 +0530 Subject: [PATCH] Remove unused execSync import --- app/updater.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/app/updater.ts b/app/updater.ts index 45ed7ffd..39ba2870 100644 --- a/app/updater.ts +++ b/app/updater.ts @@ -7,7 +7,6 @@ import retry from 'async-retry'; import {version} from './package.json'; import {getDecoratedConfig} from './plugins'; import autoUpdaterLinux from './auto-updater-linux'; -import {execSync} from 'child_process'; const {platform} = process; const isLinux = platform === 'linux';