Skip to content

Commit

Permalink
Fix tar output path in release build.
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperQ committed Feb 18, 2019
1 parent 9d7aced commit 2f082e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ jobs:
- run: cp -r stuff/static "stuff-org-${CIRCLE_TAG}/static"
- run: cp -r stuff/template "stuff-org-${CIRCLE_TAG}/template"
- run: cp build/stuff-amd64 "stuff-org-${CIRCLE_TAG}/stuff-org"
- run: fakeroot tar -czvf ../stuff-org-${CIRCLE_TAG}.amd64.tar.gz "stuff-org-${CIRCLE_TAG}"
- run: fakeroot tar -czvf stuff-org-${CIRCLE_TAG}.amd64.tar.gz "stuff-org-${CIRCLE_TAG}"
- run: cp build/stuff-armv5 "stuff-org-${CIRCLE_TAG}/stuff-org"
- run: fakeroot tar -czvf ../stuff-org-${CIRCLE_TAG}.armv5.tar.gz "stuff-org-${CIRCLE_TAG}"
- run: fakeroot tar -czvf stuff-org-${CIRCLE_TAG}.armv5.tar.gz "stuff-org-${CIRCLE_TAG}"
- run: sha256sum stuff-org-*.tar.gz | tee sha256sums.txt
- run: >
for file in stuff-org-*.tar.gz sha256sums.txt ; do
Expand Down

0 comments on commit 2f082e9

Please sign in to comment.