Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/package-mac-dmg.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ async function main() {
overwrite: true,
prune: true,
asar: false,
ignore: [IGNORE_NON_RUNTIME_ROOTS, /\.DS_Store$/, /\.log$/],
ignore: [IGNORE_NON_RUNTIME_ROOTS, /\/AGENTS\.md$/, /\.DS_Store$/, /\.log$/],
extendInfo: {
CFBundleDisplayName: PRODUCT,
CFBundleName: PRODUCT,
Expand Down
1 change: 1 addition & 0 deletions test/desktop.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,7 @@ test("release packaging is fail-closed and records stable product identity", asy
assert.match(source, /verifyApp\(extractedApp, true\)/, "the extracted updater app passes signature, ticket, and Gatekeeper checks");
assert.match(source, /"--sign", "-", candidate/);
assert.match(source, /Library\/LaunchAgents/, "release packaging rejects legacy background-agent payloads");
assert.match(source, /\/AGENTS\\\.md\$/, "release packaging excludes dependency instruction files before signing");
assert.match(source, /Library\/Application Support\/1Helm/);
assert.match(source, /installProductIcon/);
assert.match(source, /desktop", "icons", "1helm-macos-app-logo\.jpg/);
Expand Down
Loading