diff options
author | frosch <frosch@openttd.org> | 2020-05-03 18:45:58 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-03 18:45:58 +0200 |
commit | fb5fc0d80aacae9ddf85aca3e2f399d977faebe3 (patch) | |
tree | 9da225c2cd90a817faf0a5057d8121be2312d09a /azure-pipelines | |
parent | 1f1345de098294a4744981d0043512569a35102a (diff) | |
download | openttd-fb5fc0d80aacae9ddf85aca3e2f399d977faebe3.tar.xz |
Fix: OpenGFX download link did no longer work. (#8105)
Diffstat (limited to 'azure-pipelines')
-rw-r--r-- | azure-pipelines/templates/ci-opengfx.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/azure-pipelines/templates/ci-opengfx.yml b/azure-pipelines/templates/ci-opengfx.yml index 098f0d2a6..cdee9feca 100644 --- a/azure-pipelines/templates/ci-opengfx.yml +++ b/azure-pipelines/templates/ci-opengfx.yml @@ -2,7 +2,7 @@ steps: - bash: | set -ex cd bin/baseset - curl -L https://binaries.openttd.org/extra/opengfx/0.5.2/opengfx-0.5.2-all.zip > opengfx-0.5.2-all.zip - unzip opengfx-0.5.2-all.zip - rm -f opengfx-0.5.2-all.zip + curl -L https://cdn.openttd.org/opengfx-releases/0.6.0/opengfx-0.6.0-all.zip > opengfx-all.zip + unzip opengfx-all.zip + rm -f opengfx-all.zip displayName: 'Install OpenGFX' |