Skip to content

Commit

Permalink
fix build-assets.bash again (#115)
Browse files Browse the repository at this point in the history
  • Loading branch information
ktr0731 authored Oct 27, 2018
1 parent 8196365 commit e9401db
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions .circleci/scripts/build-assets.bash
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,14 @@ gox -osarch "$OSARCH" \
..

for f in *; do
# Windows
if echo "$f" | grep exe > /dev/null 2>&1; then
mv "$f" evans.exe
tar czvf "$f.tar.gz" evans.exe
rm -f evans.exe
else
mv "$f" evans
tar czvf "$f.tar.gz" evans
rm -f evans
fi
tar czvf "$f.tar.gz" evans
rm -f evans
done
2 changes: 1 addition & 1 deletion meta/meta.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ import (
const AppName = "evans"

var (
Version = semver.MustParse("0.6.5")
Version = semver.MustParse("0.6.6")
)

0 comments on commit e9401db

Please sign in to comment.