Index: git-crup |
diff --git a/git-crup b/git-crup |
index 6f7f533fca1924300b6bb7f8e3033d062cf8a339..92af76b180c54cd60b4ce31be54e7d2e3b2e5146 100755 |
--- a/git-crup |
+++ b/git-crup |
@@ -139,7 +139,15 @@ fi |
status=$? |
-if [ "$hooks" = "yes" -a "$status" -eq 0 ]; then |
+if [ "$status" -ne 0 ]; then |
+ cat 1>&2 <<EOF |
+Please check the preceding terminal output for error messages. |
+Run 'git submodule status' to see the current state of submodule checkout. |
szager1
2013/01/23 19:58:13
s/checkout/checkouts/
|
+EOF |
+ exit $status |
+fi |
+ |
+if [ "$hooks" = "yes" ]; then |
"$runhooks" |
status=$? |
fi |