diff --git a/.travis/after_success.sh b/.travis/after_success.sh index 168cce263..c48afe216 100644 --- a/.travis/after_success.sh +++ b/.travis/after_success.sh @@ -11,7 +11,7 @@ wget -c https://github.com/probonopd/uploadtool/raw/master/upload.sh # Check if there's been a new commit since this build, and if so don't upload it -REMOTE=$(curl https://api.github.com/repos/olive-editor/olive/commits/master | grep -Po '(?<=: \")(([a-z0-9])\w+)(?=\")' -m 1) +REMOTE=$(curl -s -N https://api.github.com/repos/olive-editor/olive/commits/master | grep -Po '(?<=: \")(([a-z0-9])\w+)(?=\")' -m 1) LOCAL=$(git rev-parse HEAD) if [ "$REMOTE" == "$LOCAL" ]