From 301af68eee30e66d103cebf4be7448d06d43f452 Mon Sep 17 00:00:00 2001 From: William Grant Date: Wed, 12 Jun 2024 18:22:31 +1000 Subject: [PATCH] fix: single line linux target in package json otherwise appimages fail to build --- package.json | 6 +----- ts/test/session/unit/updater/updater_test.ts | 2 +- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index 6f5886f3b..721cee71d 100644 --- a/package.json +++ b/package.json @@ -269,11 +269,7 @@ "StartupWMClass": "Session" }, "asarUnpack": "node_modules/spellchecker/vendor/hunspell_dictionaries", - "target": [ - "deb", - "rpm", - "freebsd" - ], + "target": ["deb", "rpm", "freebsd"], "icon": "build/icon-linux.icns" }, "asarUnpack": [ diff --git a/ts/test/session/unit/updater/updater_test.ts b/ts/test/session/unit/updater/updater_test.ts index c3af60023..232c2106b 100644 --- a/ts/test/session/unit/updater/updater_test.ts +++ b/ts/test/session/unit/updater/updater_test.ts @@ -1,6 +1,6 @@ -import path from 'path'; import { readFileSync } from 'fs-extra'; import { isEmpty } from 'lodash'; +import path from 'path'; describe('Updater', () => { it.skip('isUpdateAvailable', () => {});