Skip to content

Commit bd1ab8f

Browse files
committed
Adds progress message to release script
1 parent 25a6e8a commit bd1ab8f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

script/release

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ cd ${PROJDIR}
2222
# Run the tests
2323
go test
2424
if [ $? -ne 0 ]; then
25-
echo "Tests failed. Aborting."
25+
echo "Tests failed. Aborting."
2626
exit 3
2727
fi
2828

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

59+
echo "Uploading ${ARCHIVE}..."
5960
github-release upload \
6061
--user ${USER} \
6162
--repo ${REPO} \

0 commit comments

Comments
 (0)