chore(ci): replace wget with curl in Godot download step
Cozypaw Hospital/pipeline/head This commit looks good

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Steven Wroblewski
2026-05-12 13:11:54 +02:00
parent fb4434a537
commit 6e9432fa82
Vendored
+1 -1
View File
@@ -12,7 +12,7 @@ pipeline {
sh ''' sh '''
if [ ! -x "$GODOT_BIN" ]; then if [ ! -x "$GODOT_BIN" ]; then
mkdir -p /tmp/godot_ci mkdir -p /tmp/godot_ci
wget -q -O /tmp/godot_ci/godot.zip \ curl -fsSL -o /tmp/godot_ci/godot.zip \
"https://github.com/godotengine/godot/releases/download/${GODOT_VERSION}/Godot_v${GODOT_VERSION}_linux.x86_64.zip" "https://github.com/godotengine/godot/releases/download/${GODOT_VERSION}/Godot_v${GODOT_VERSION}_linux.x86_64.zip"
unzip -o /tmp/godot_ci/godot.zip -d /tmp/godot_ci/ unzip -o /tmp/godot_ci/godot.zip -d /tmp/godot_ci/
chmod +x "$GODOT_BIN" chmod +x "$GODOT_BIN"