Skip to content

Commit

Permalink
ci: Use uname to figure out which OS we are running on
Browse files Browse the repository at this point in the history
  • Loading branch information
dlespiau committed Jul 1, 2019
1 parent 79b2fd3 commit f77467a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions run-deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ set -e
set -x

# Only deploy from the Linux CI
os=`go env GOOS`
if [ $os != "linux" ]; then
os=`uname`
if [ $os != "Linux" ]; then
exit 0
fi

Expand Down

0 comments on commit f77467a

Please sign in to comment.