We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7926dbe commit 58b48eaCopy full SHA for 58b48ea
scripts/update-repo.sh
@@ -24,6 +24,9 @@ if [ ! -d vim/src ]; then
24
fi
25
git submodule update
26
27
+# get the latest tags
28
+git fetch --tags
29
+
30
# get the last released commit id from this repo
31
curl -s https://api.github.com/repos/vim/vim-win32-installer/releases/latest -o latest.json
32
vimoldver=$(cat latest.json | python -c 'import sys; from json import loads as l; print(l(sys.stdin.read())["body"])' | sed -n -e '/.*(https:\/\/github\.com\/vim\/vim\/commit\/\([0-9a-f]*\)).*/{s//\1/;p;q}')
0 commit comments