From 8899a8271338ba19f32bae1b30e0df0392afe1bc Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Tue, 30 Aug 2011 16:37:11 +0200 Subject: Add error handling to git scripts --- git/pull.sh | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'git/pull.sh') diff --git a/git/pull.sh b/git/pull.sh index cf94cf0..07684da 100755 --- a/git/pull.sh +++ b/git/pull.sh @@ -11,5 +11,11 @@ for i in $modules; do echo "pull $i" 1>&2 cd $i git pull $* + + if [ $? -ne 0 ]; then + echo "pull FAILED" 1>&2 + exit 1 + fi + cd $wd done -- cgit v1.1