aboutsummaryrefslogtreecommitdiff
path: root/util/ci/common.sh
diff options
context:
space:
mode:
authorsfan5 <sfan5@live.de>2022-07-21 20:51:02 +0200
committersfan5 <sfan5@live.de>2022-07-23 22:27:19 +0200
commit175e13257653b07df247422cebd3a6da5f29dc51 (patch)
treebc54d00708cab401c0f6123c45ab5b779487aaf0 /util/ci/common.sh
parent71f6a5f44e0cb0e4ef57e942987ec8e76139452c (diff)
downloadhax-minetest-server-175e13257653b07df247422cebd3a6da5f29dc51.tar.gz
hax-minetest-server-175e13257653b07df247422cebd3a6da5f29dc51.zip
Centralize IrrlichtMt version used for builds
maybe a submodule would have really been easier...
Diffstat (limited to 'util/ci/common.sh')
-rw-r--r--util/ci/common.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/util/ci/common.sh b/util/ci/common.sh
index db525a61c..3015680c4 100644
--- a/util/ci/common.sh
+++ b/util/ci/common.sh
@@ -10,7 +10,8 @@ install_linux_deps() {
if [[ "$1" == "--no-irr" ]]; then
shift
else
- wget "https://github.com/minetest/irrlicht/releases/download/1.9.0mt7/ubuntu-bionic.tar.gz"
+ local ver=$(cat misc/irrlichtmt_tag.txt)
+ wget "https://github.com/minetest/irrlicht/releases/download/$ver/ubuntu-bionic.tar.gz"
sudo tar -xaf ubuntu-bionic.tar.gz -C /usr/local
fi