Remove postRefreshHook reference

This commit is contained in:
Daniel Imms 2018-02-07 13:28:58 -08:00
parent 90385c778b
commit 7097e0b3da

View file

@ -209,7 +209,7 @@ function prepareSnapPackage(arch) {
const electronLaunch = gulp.src('resources/linux/snap/electron-launch', { base: '.' })
.pipe(rename('electron-launch'));
const all = es.merge(desktop, icon, code, snapcraft, electronLaunch, postRefreshHook);
const all = es.merge(desktop, icon, code, snapcraft, electronLaunch);
return all.pipe(vfs.dest(destination));
};