Skip to content
This repository was archived by the owner on May 17, 2024. It is now read-only.

Commit a6ffa0c

Browse files
committed
fix: change into bin before zipping
1 parent 6d387ca commit a6ffa0c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
"build:dist": "tsc && cp -TRv src/static/ dist/static/",
1919
"build:tgz": "tar czf nixster-deps.tgz envs node_modules/better-sqlite3 node_modules/integer node_modules/node-pty",
2020
"build:bins": "pkg --target=host -o=bin/nixster .",
21-
"bundle:linux": "tar -czvf bin/nixster-linux-x64.tar.gz bin/nixster",
22-
"bundle:osx": "tar -czvf bin/nixster-macos-x64.tar.gz bin/nixster",
21+
"bundle:linux": "tar -czvf bin/nixster-linux-x64.tar.gz -C bin nixster",
22+
"bundle:osx": "tar -czvf bin/nixster-macos-x64.tar.gz -C bin nixster",
2323
"docs": "npm run docs:readme && npm run docs:contrib && typedoc --readme README.md --mode file --out ./docs ./src",
2424
"docs:readme": "markdown-toc -i --maxdepth=4 README.md",
2525
"docs:contrib": "markdown-toc -i --maxdepth=4 CONTRIBUTING.md",

0 commit comments

Comments
 (0)