mirror of
https://github.com/nimbold/Firelink.git
synced 2026-08-01 23:22:24 +00:00
fix(release): harden packaging and filename localization
This commit is contained in:
@@ -11,7 +11,7 @@ let receivedSignal;
|
||||
export const APPIMAGE_CONFIG = JSON.stringify({
|
||||
bundle: {
|
||||
resources: {
|
||||
'engine-dist/': null,
|
||||
'../THIRD_PARTY_NOTICES.md': 'THIRD_PARTY_NOTICES.md',
|
||||
},
|
||||
},
|
||||
});
|
||||
|
||||
@@ -2,11 +2,11 @@ import assert from 'node:assert/strict';
|
||||
import test from 'node:test';
|
||||
import { APPIMAGE_CONFIG, appImageBundleArguments } from './build-linux-appimage.js';
|
||||
|
||||
test('AppImage config removes only engine-dist from Tauri resources', () => {
|
||||
test('AppImage config keeps notices while excluding the staged engine payload', () => {
|
||||
assert.deepEqual(JSON.parse(APPIMAGE_CONFIG), {
|
||||
bundle: {
|
||||
resources: {
|
||||
'engine-dist/': null,
|
||||
'../THIRD_PARTY_NOTICES.md': 'THIRD_PARTY_NOTICES.md',
|
||||
},
|
||||
},
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user