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/checkout.sh | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'git/checkout.sh') diff --git a/git/checkout.sh b/git/checkout.sh index 2cf5717..11643c4 100755 --- a/git/checkout.sh +++ b/git/checkout.sh @@ -16,5 +16,11 @@ for i in $modules; do echo "checkout $i" 1>&2 cd $i git checkout $* + + if [ $? -ne 0 ]; then + echo "checkout FAILED" 1>&2 + exit 1 + fi + cd $wd done -- cgit v1.1