From c05f818f8078d1eb938fd320c2f35b458b5211ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Wed, 29 Oct 2025 10:49:12 +0100 Subject: [PATCH] publish-release: Fix command for uploading the web editor This was missed when backporting the retry logic from 4.x. --- publish-release.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/publish-release.sh b/publish-release.sh index 54b7792..5d9ee89 100755 --- a/publish-release.sh +++ b/publish-release.sh @@ -161,7 +161,6 @@ retry_command() { command="sudo mv /home/akien/web_editor/${template_version} /var/www/editor.godotengine.org/public/releases/" command="${command}; cd /var/www/editor.godotengine.org; sudo chown -R www-data:www-data public/releases/${template_version}" command="${command}; sudo ./create-symlinks.sh -v ${template_version}" -ssh -P 22 ${WEB_EDITOR_HOSTNAME} "${command}" retry_command "scp -P 22 -r web/${template_version} ${WEB_EDITOR_HOSTNAME}:/home/akien/web_editor/" sleep 2