fix(release): harden packaging and filename localization

This commit is contained in:
NimBold
2026-07-30 05:08:26 +03:30
parent 1634118f11
commit 924e108f3c
6 changed files with 41 additions and 5 deletions
+1 -1
View File
@@ -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 -2
View File
@@ -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',
},
},
});