We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d880b5 commit 5c77180Copy full SHA for 5c77180
epochX/cudacpp/gitTag.sh
@@ -49,6 +49,13 @@ else
49
shift
50
fi
51
52
+# Check that all git submodules have been updated
53
+if ! git submodule status | grep '^ ' > /dev/null; then
54
+ echo "ERROR! There are git submodules that need to be updated"
55
+ git submodule status
56
+ exit 1
57
+fi
58
+
59
# Check that all changes are committed to git (except at most for this script only in the '-l' mode)
60
if [ "$(git status --porcelain | grep -v ^??)" != "" ]; then
61
if [ "$tagsuffix" != "" ] || [ "$(git status --porcelain | grep -v ^??)" != " M ${scr}" ]; then
0 commit comments