diff options
author | sfan5 <sfan5@live.de> | 2022-07-21 20:51:02 +0200 |
---|---|---|
committer | sfan5 <sfan5@live.de> | 2022-07-23 22:27:19 +0200 |
commit | 175e13257653b07df247422cebd3a6da5f29dc51 (patch) | |
tree | bc54d00708cab401c0f6123c45ab5b779487aaf0 /util/ci | |
parent | 71f6a5f44e0cb0e4ef57e942987ec8e76139452c (diff) | |
download | minetest-175e13257653b07df247422cebd3a6da5f29dc51.tar.gz minetest-175e13257653b07df247422cebd3a6da5f29dc51.tar.bz2 minetest-175e13257653b07df247422cebd3a6da5f29dc51.zip |
Centralize IrrlichtMt version used for builds
maybe a submodule would have really been easier...
Diffstat (limited to 'util/ci')
-rw-r--r-- | util/ci/common.sh | 3 |
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 |