diff --git a/images/actions/godot/Dockerfile b/images/actions/godot/Dockerfile index 421c0fc..89b5710 100644 --- a/images/actions/godot/Dockerfile +++ b/images/actions/godot/Dockerfile @@ -8,13 +8,13 @@ RUN if [[ "$PACKAGE_VERSION" != "latest" ]] ; then \ | grep "browser_download_url.*Godot_v.*-stable_mono_linux_x86_64.zip" \ | cut -d '"' -f 4 - \ | head -n 1 \ - ) -O Godot.zip \ + ) -O Godot.zip ;\ else \ wget $( \ curl -s https://api.github.com/repos/godotengine/godot/releases/latest \ | grep "browser_download_url.*Godot_v.*-stable_mono_linux_x86_64.zip" \ | cut -d '"' -f 4 \ - ) -O Godot.zip \ + ) -O Godot.zip ;\ fi \ && unzip Godot.zip -d /usr/local/bin \ && rm Godot.zip \