From 8c5b550caaa423dcf21fdfb3aea4dfae5518b5a4 Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Thu, 7 Jun 2018 16:38:44 +0200 Subject: [PATCH] Explicitly use cloudron-syslog 1.0.0 instead of moving master --- scripts/installer.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/installer.sh b/scripts/installer.sh index f273848ca..5a9f71245 100755 --- a/scripts/installer.sh +++ b/scripts/installer.sh @@ -98,7 +98,7 @@ if [[ "$(cloudron-syslog --version)" != "1.0.0" ]]; then CLOUDRON_SYSLOG_DIR=/usr/local/cloudron-syslog rm -rf ${CLOUDRON_SYSLOG_DIR} mkdir -p ${CLOUDRON_SYSLOG_DIR} - $curl -sL https://git.cloudron.io/cloudron/cloudron-syslog/-/archive/master/cloudron-syslog-master.tar.gz | tar zxvf - --strip-components=1 -C ${CLOUDRON_SYSLOG_DIR} + $curl -sL https://git.cloudron.io/cloudron/cloudron-syslog/-/archive/v1.0.0/cloudron-syslog-v1.0.0.tar.gz | tar zxvf - --strip-components=1 -C ${CLOUDRON_SYSLOG_DIR} (cd ${CLOUDRON_SYSLOG_DIR} && npm install --unsafe-perm) # need --unsafe-perm since we run as root and npm drops privileges fi