From b40a9803a8f66fcf3bd38a0544fcf29c09a7636f Mon Sep 17 00:00:00 2001 From: Johannes Date: Mon, 31 Oct 2016 17:24:51 +0100 Subject: [PATCH] Adjust script paths for isntaller.sh movement --- scripts/cloudron-setup | 2 +- src/scripts/update.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/cloudron-setup b/scripts/cloudron-setup index 8fbfa6528..fbc197f23 100755 --- a/scripts/cloudron-setup +++ b/scripts/cloudron-setup @@ -95,7 +95,7 @@ EOF ) echo "=> Run installer.sh for version ${version} with ${sourceTarballUrl} ... (this takes some time)" -if ! ${INSTALLER_SOURCE_DIR}/src/scripts/installer.sh --sourcetarballurl "${sourceTarballUrl}" --data "${data}" &>> "${LOG_FILE}"; then +if ! ${INSTALLER_SOURCE_DIR}/scripts/installer.sh --sourcetarballurl "${sourceTarballUrl}" --data "${data}" &>> "${LOG_FILE}"; then echo "Failed to install cloudron. See ${LOG_FILE} for details" exit 1 fi diff --git a/src/scripts/update.sh b/src/scripts/update.sh index 33d350205..bcc65c45f 100755 --- a/src/scripts/update.sh +++ b/src/scripts/update.sh @@ -30,7 +30,7 @@ echo "Updating Cloudron with ${sourceTarballUrl}" &>> "${LOG_FILE}" echo "${data}" &>> "${LOG_FILE}" echo "=> Run installer.sh" -if ! ${INSTALLER_SOURCE_DIR}/src/scripts/installer.sh --sourcetarballurl "${sourceTarballUrl}" --data "${data}" &>> "${LOG_FILE}"; then +if ! ${INSTALLER_SOURCE_DIR}/scripts/installer.sh --sourcetarballurl "${sourceTarballUrl}" --data "${data}" &>> "${LOG_FILE}"; then echo "Failed to install cloudron. See ${LOG_FILE} for details" exit 1 fi