diff options
author | Elias Fleckenstein <eliasfleckenstein@web.de> | 2022-05-18 17:44:02 +0200 |
---|---|---|
committer | Elias Fleckenstein <eliasfleckenstein@web.de> | 2022-05-18 17:44:02 +0200 |
commit | 350b6d175c406fbbc002237f37db4cf88d6d3d19 (patch) | |
tree | 9ab96e30817b33d5cddcbcdb08488ac1804d96c1 | |
parent | 393c8392821bf3357d2ada3ac0afe065758acc53 (diff) | |
download | dragonfireclient-350b6d175c406fbbc002237f37db4cf88d6d3d19.tar.xz |
Install lua_async dependency2022.05
-rwxr-xr-x | util/buildbot/buildwin32.sh | 4 | ||||
-rwxr-xr-x | util/buildbot/buildwin64.sh | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/util/buildbot/buildwin32.sh b/util/buildbot/buildwin32.sh index 2418ffe8c..30e015adb 100755 --- a/util/buildbot/buildwin32.sh +++ b/util/buildbot/buildwin32.sh @@ -118,6 +118,10 @@ else git clone $GIT_ORG/$mod clientmods/$mod echo "load_mod_$mod = true" >> clientmods/mods.conf done + cd $sourcedir + [ -d clientmods/lua_async ] && { pushd clientmods/lua_async; git pull; popd; } || \ + git clone --recursive https://github.com/EliasFleckenstein03/lua_async_mt clientmods/lua_async + echo "load_mod_lua_async = true" >> clientmods/mods.conf fi git_hash=$(cd $sourcedir && git rev-parse --short HEAD) diff --git a/util/buildbot/buildwin64.sh b/util/buildbot/buildwin64.sh index c1e446d39..230f48e04 100755 --- a/util/buildbot/buildwin64.sh +++ b/util/buildbot/buildwin64.sh @@ -115,6 +115,10 @@ else git clone $GIT_ORG/$mod clientmods/$mod echo "load_mod_$mod = true" >> clientmods/mods.conf done + cd $sourcedir + [ -d clientmods/lua_async ] && { pushd clientmods/lua_async; git pull; popd; } || \ + git clone --recursive https://github.com/EliasFleckenstein03/lua_async_mt clientmods/lua_async + echo "load_mod_lua_async = true" >> clientmods/mods.conf fi git_hash=$(cd $sourcedir && git rev-parse --short HEAD) |