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.
2 parents 7523343 + 3b63bb4 commit 79f969dCopy full SHA for 79f969d
scripts/update-repo.sh
@@ -58,6 +58,12 @@ if git diff --exit-code > /dev/null; then
58
exit 0
59
fi
60
61
+# Check if the latest tag already exists (e.g. only runtime file updates)
62
+if git rev-parse -q --verify "$vimver" >/dev/null; then
63
+ echo "No new Vim tag, exiting"
64
+ exit 0
65
+fi
66
+
67
# Commit the change and push it
68
# replace newline by \n
69
echo "$vimlog_md" | sed -e ':a;N;$!ba;s/\n/\\n/g' > gitlog.txt
0 commit comments