diff --git a/scripts/cloudron-setup b/scripts/cloudron-setup index f701d3a56..09d615be8 100755 --- a/scripts/cloudron-setup +++ b/scripts/cloudron-setup @@ -211,7 +211,7 @@ mysql -uroot -ppassword -e "REPLACE INTO box.settings (name, value) VALUES ('api mysql -uroot -ppassword -e "REPLACE INTO box.settings (name, value) VALUES ('web_server_origin', '${webServerOrigin}');" 2>/dev/null if [[ -n "${appstoreSetupToken}" ]]; then - if ! setupResponse=$(curl -X POST -H "Content-type: application/json" --data "{\"setupToken\": \"${appstoreSetupToken}\"}" "${apiServerOrigin}/api/v1/cloudron_setup_done"); then + if ! setupResponse=$(curl -sX POST -H "Content-type: application/json" --data "{\"setupToken\": \"${appstoreSetupToken}\"}" "${apiServerOrigin}/api/v1/cloudron_setup_done"); then echo "Could not complete setup. See ${LOG_FILE} for details" exit 1 fi