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

Commit

Permalink
fix: change into bin before zipping
Browse files Browse the repository at this point in the history
  • Loading branch information
nokome committed May 15, 2019
1 parent 6d387ca commit a6ffa0c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
"build:dist": "tsc && cp -TRv src/static/ dist/static/",
"build:tgz": "tar czf nixster-deps.tgz envs node_modules/better-sqlite3 node_modules/integer node_modules/node-pty",
"build:bins": "pkg --target=host -o=bin/nixster .",
"bundle:linux": "tar -czvf bin/nixster-linux-x64.tar.gz bin/nixster",
"bundle:osx": "tar -czvf bin/nixster-macos-x64.tar.gz bin/nixster",
"bundle:linux": "tar -czvf bin/nixster-linux-x64.tar.gz -C bin nixster",
"bundle:osx": "tar -czvf bin/nixster-macos-x64.tar.gz -C bin nixster",
"docs": "npm run docs:readme && npm run docs:contrib && typedoc --readme README.md --mode file --out ./docs ./src",
"docs:readme": "markdown-toc -i --maxdepth=4 README.md",
"docs:contrib": "markdown-toc -i --maxdepth=4 CONTRIBUTING.md",
Expand Down

0 comments on commit a6ffa0c

Please sign in to comment.