From a9664bb94cdcb07c15186f483576020bfe971c53 Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Wed, 18 Dec 2024 12:39:00 +0100 Subject: [PATCH] little fixes --- ct/silverbullet.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ct/silverbullet.sh b/ct/silverbullet.sh index c9d73749..744379b5 100644 --- a/ct/silverbullet.sh +++ b/ct/silverbullet.sh @@ -36,7 +36,7 @@ function update_script() { msg_info "Updating ${APP} to v${RELEASE}" wget -q https://github.com/silverbulletmd/silverbullet/releases/download/${RELEASE}/silverbullet-server-linux-x86_64.zip - unzip silverbullet-server-linux-x86_64.zip &>/dev/null + unzip -q silverbullet-server-linux-x86_64.zip mv silverbullet /opt/silverbullet/bin/ chmod +x /opt/silverbullet/bin/silverbullet echo "${RELEASE}" >/opt/silverbullet/${APP}_version.txt @@ -46,7 +46,7 @@ function update_script() { systemctl start silverbullet msg_ok "Started ${APP}" else - msg_ok "No update required. ${APP} is already at ${RELEASE}" + msg_ok "No update required. ${APP} is already at v${RELEASE}" fi exit }