minetest-mapserver: fixup
This commit is contained in:
parent
c54852d143
commit
b92e2034b7
1 changed files with 2 additions and 2 deletions
|
@ -1,11 +1,11 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
# The architecture - possible values: arm (default), x86, x86_64
|
# The architecture - possible values: arm (default), x86, x86_64
|
||||||
# arch="${arch:-arm}";
|
arch="${arch:-arm}";
|
||||||
|
|
||||||
|
|
||||||
# download_url="https://github.com/minetest-mapserver/mapserver/releases/latest/download/mapserver-linux-${arch}";
|
# download_url="https://github.com/minetest-mapserver/mapserver/releases/latest/download/mapserver-linux-${arch}";
|
||||||
download_url="$(curl -sSL https://api.github.com/repos/minetest-mapserver/mapserver/releases/58437588/assets | jq --raw-output '.[] | select(.browser_download_url | contains("_armv")) | .url' | head -n1)";
|
download_url="$(curl -sSL https://api.github.com/repos/minetest-mapserver/mapserver/releases/58437588/assets | jq --raw-output '.[] | select(.browser_download_url | contains("_armv")) | .browser_download_url' | head -n1)";
|
||||||
|
|
||||||
# The registry to push to
|
# The registry to push to
|
||||||
DOCKER_REGISTRY="${DOCKER_REGISTRY:-registry.service.mooncarrot.space:5000/}";
|
DOCKER_REGISTRY="${DOCKER_REGISTRY:-registry.service.mooncarrot.space:5000/}";
|
||||||
|
|
Loading…
Reference in a new issue