]> git.lizzy.rs Git - dragonfireclient.git/commitdiff
Install lua_async dependency 2022.05
authorElias Fleckenstein <eliasfleckenstein@web.de>
Wed, 18 May 2022 15:44:02 +0000 (17:44 +0200)
committerElias Fleckenstein <eliasfleckenstein@web.de>
Wed, 18 May 2022 15:44:02 +0000 (17:44 +0200)
util/buildbot/buildwin32.sh
util/buildbot/buildwin64.sh

index 2418ffe8cc4d9554d10ae95cc18220328c53b715..30e015adbe41b25ee80129366f446d111af1696f 100755 (executable)
@@ -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)
index c1e446d3917c79761fab90102b35f9f736dc677e..230f48e04ea3d1ec96008b10f579fa290af5356c 100755 (executable)
@@ -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)