chore(ci): replace wget with curl in Godot download step
Cozypaw Hospital/pipeline/head This commit looks good
Cozypaw Hospital/pipeline/head This commit looks good
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Vendored
+1
-1
@@ -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"
|
||||||
|
|||||||
Reference in New Issue
Block a user