Skip to content

Commit

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

for f in *; do
mv "$f" evans
if echo "$f" | grep exe > /dev/null 2>&1; then
mv "$f" evans.exe
else
mv "$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.4")
Version = semver.MustParse("0.6.5")
)

0 comments on commit 8196365

Please sign in to comment.