From 43482ec712d4298e18e4c7642d115ed78a345681 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Thu, 30 Jan 2020 13:41:22 +0100 Subject: [PATCH] Fix lint --- server/helpers/core-utils.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/server/helpers/core-utils.ts b/server/helpers/core-utils.ts index 519dc83d0..7e8252aa4 100644 --- a/server/helpers/core-utils.ts +++ b/server/helpers/core-utils.ts @@ -199,8 +199,6 @@ function sha1 (str: string | Buffer, encoding: HexBase64Latin1Encoding = 'hex') return createHash('sha1').update(str).digest(encoding) } - - function execShell (command: string, options?: ExecOptions) { return new Promise<{ err?: Error, stdout: string, stderr: string }>((res, rej) => { exec(command, options, (err, stdout, stderr) => {