Browse Source

mk: show submodule status on failure

master
Andrew Tridgell 9 years ago
parent
commit
a0af5515b8
  1. 2
      mk/check_modules.sh

2
mk/check_modules.sh

@ -25,10 +25,12 @@ done @@ -25,10 +25,12 @@ done
set -x
git submodule init || {
echo "git submodule init failed"
git submodule status
exit 1
}
git submodule update || {
echo "git submodule update failed"
git submodule status
exit 1
}
cat <<EOF

Loading…
Cancel
Save