publish-release: Fix command for uploading the web editor

This was missed when backporting the retry logic from 4.x.
This commit is contained in:
Rémi Verschelde
2025-10-29 10:49:12 +01:00
parent 6e3758c48b
commit c05f818f80

View File

@@ -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