Skip to content

Commit

Permalink
fix: fix the name for macos tar file
Browse files Browse the repository at this point in the history
  • Loading branch information
anacierdem committed Oct 18, 2024
1 parent 22740c0 commit 674afce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bundle.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ await $`tar -C ./tmp -cvzf libdragon-linux-x86_64.tar.gz libdragon`;
await fs.rm('./tmp/libdragon');

await fs.rename('./build/libdragon-macos', './tmp/libdragon');
await $`tar -C ./tmp -cvzf libdragon-macos-x86_64.tar.gz libdragon`;
await $`tar -C ./tmp -cvzf libdragon-macos-arm64.tar.gz libdragon`;
await fs.rm('./tmp/libdragon');

await fs.rename('./build/libdragon.exe', './tmp/libdragon.exe');
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
"label": "Linux executable"
},
{
"path": "libdragon-macos-x86_64.tar.gz",
"path": "libdragon-macos-arm64.tar.gz",
"label": "MacOS executable"
},
{
Expand Down

0 comments on commit 674afce

Please sign in to comment.