From 7eafebf2c2ed3cd77fa3ceb7d2c1df6484759dca Mon Sep 17 00:00:00 2001 From: Snoweuph Date: Thu, 9 May 2024 22:04:39 +0000 Subject: [PATCH] images/actions/godot/Dockerfile aktualisiert --- images/actions/godot/Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/images/actions/godot/Dockerfile b/images/actions/godot/Dockerfile index 93a635f..421c0fc 100644 --- a/images/actions/godot/Dockerfile +++ b/images/actions/godot/Dockerfile @@ -7,14 +7,14 @@ RUN if [[ "$PACKAGE_VERSION" != "latest" ]] ; then \ curl -s https://api.github.com/repos/godotengine/godot/releases/tags/$PACKAGE_VERSION-stable \ | grep "browser_download_url.*Godot_v.*-stable_mono_linux_x86_64.zip" \ | cut -d '"' -f 4 - \ - | head -n 1 - ) -O Godot.zip + | head -n 1 \ + ) -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 + | cut -d '"' -f 4 \ + ) -O Godot.zip \ fi \ && unzip Godot.zip -d /usr/local/bin \ && rm Godot.zip \