We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42cfc90 commit d0e81e2Copy full SHA for d0e81e2
script/update_submodules
@@ -1,6 +1,6 @@
1
#!/bin/bash
2
3
-set -e
+set -euo pipefail
4
5
if [ -z "$1" ]; then
6
BRANCH="main"
@@ -14,7 +14,10 @@ echo "Checking out cmark-upstream"
14
echo "---------------------"
15
cd ext/commonmarker/cmark-upstream
16
git fetch origin
17
-git checkout $BRANCH && git pull
+# when checking out a tag, for whatever reason the git pull step fails
18
+# so we comment it out for now:
19
+# git checkout $BRANCH && git pull
20
+git checkout $BRANCH
21
sha=`git rev-parse HEAD`
22
cd ../../..
23
make
0 commit comments