Skip to content

Commit

Permalink
ops: attempt to fix nsis artifacts again
Browse files Browse the repository at this point in the history
  • Loading branch information
dominiksta committed Jul 10, 2024
1 parent 27a4208 commit a9739af
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion forge.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,11 @@ const config: ForgeConfig = {
];

for (const result of results) {
console.log('before', result.artifacts);
result.artifacts = result.artifacts.filter(
a => filters.some(f => a.includes(f))
a => !filters.some(f => a.includes(f))
);
console.log('after', result.artifacts);
}

return results;
Expand Down

0 comments on commit a9739af

Please sign in to comment.