Skip to content

Commit

Permalink
Adds progress message to release script
Browse files Browse the repository at this point in the history
  • Loading branch information
tomnomnom committed Jul 2, 2016
1 parent 25a6e8a commit bd1ab8f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion script/release
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ cd ${PROJDIR}
# Run the tests
go test
if [ $? -ne 0 ]; then
echo "Tests failed. Aborting."
echo "Tests failed. Aborting."
exit 3
fi

Expand Down Expand Up @@ -56,6 +56,7 @@ for OS in "darwin" "linux" "windows"; do
ARCHIVE="${BINARY}-${OS}-amd64-${VERSION}.tgz"
tar --create --gzip --file=${ARCHIVE} ${BINFILE}

echo "Uploading ${ARCHIVE}..."
github-release upload \
--user ${USER} \
--repo ${REPO} \
Expand Down

0 comments on commit bd1ab8f

Please sign in to comment.