From 73f33c31bb9932d6e32711ac139da2203db2fe79 Mon Sep 17 00:00:00 2001 From: Thomas Nordquist Date: Sun, 23 Jun 2019 12:30:35 +0200 Subject: [PATCH] Remove wrapper script from snaps --- scripts/afterPack.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/afterPack.ts b/scripts/afterPack.ts index 5790855..221345b 100644 --- a/scripts/afterPack.ts +++ b/scripts/afterPack.ts @@ -15,7 +15,7 @@ interface Context { export default async function(context: Context) { console.log(context) - const isLinux = context.targets.find(target => target.name === 'appImage' || target.name === 'snap') + const isLinux = context.targets.find(target => target.name === 'appImage') if (!isLinux) { return }