aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/check_upstream2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/check_upstream b/scripts/check_upstream
index 02c3f87..3313e5b 100755
--- a/scripts/check_upstream
+++ b/scripts/check_upstream
@@ -18,7 +18,7 @@ cd "$1" && \
18git fetch origin && \ 18git fetch origin && \
19if ! git rev-list "$head" | grep "$(git rev-parse origin/master)" > /dev/null 19if ! git rev-list "$head" | grep "$(git rev-parse origin/master)" > /dev/null
20then 20then
21 [ $(git pull my) = 'Alrady up to date.' ] || \ 21 [[ $(git pull my) == 'Alrady up to date.' ]] || \
22 echo "New commit at" "$1" 22 echo "New commit at" "$1"
23fi 23fi
24 24