From 21351c0cb0d736d17babec6ad14dbed42009529b Mon Sep 17 00:00:00 2001 From: Snoweuph Date: Thu, 9 May 2024 22:13:02 +0000 Subject: [PATCH] images/actions/godot/Dockerfile aktualisiert --- images/actions/godot/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 \