From 7b84b66b8e7ef4db9b1791d87065d2d79ea66abf Mon Sep 17 00:00:00 2001 From: itsmattkc Date: Sat, 9 Mar 2019 01:03:06 +1100 Subject: [PATCH] disabled curl buffering in travis script --- .travis/after_success.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" ]