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 \