disabled curl buffering in travis script

This commit is contained in:
itsmattkc
2019-03-09 01:03:06 +11:00
parent 662219a825
commit 7b84b66b8e
+1 -1
View File
@@ -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" ]