Remove wrapper script from snaps

This commit is contained in:
Thomas Nordquist
2019-06-23 12:30:35 +02:00
parent ffdce6f825
commit 73f33c31bb

View File

@@ -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
}