Skip to content

Commit 25a3a63

Browse files
committed
fix script to not update luajit-rocks
1 parent 8cf6ff9 commit 25a3a63

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

admin/updateSubmodules.sh

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
git pull
22
git submodule update
3-
git submodule foreach git pull origin master
3+
# dont update luajit-rocks because of https://github.com/LuaJIT/LuaJIT/issues/325
4+
git submodule foreach bash -c 'if [ $(basename $(pwd)) != 'luajit-rocks' ]; then git pull origin master; fi'
5+
# git submodule foreach git pull origin master
46
git add extra pkg exe
57
git commit -m "updating packages"

0 commit comments

Comments
 (0)