From 0418f47d0e1ea222744036ea8c0f8197c8d7c63d Mon Sep 17 00:00:00 2001 From: fabrice1236 <87321357+fabrice1236@users.noreply.github.com> Date: Thu, 9 Jan 2025 20:15:58 +0100 Subject: [PATCH] Update ct/ghost.sh Co-authored-by: Michel Roegl-Brunner <73236783+michelroegl-brunner@users.noreply.github.com> --- ct/ghost.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ct/ghost.sh b/ct/ghost.sh index 25ad4826..9349ccef 100644 --- a/ct/ghost.sh +++ b/ct/ghost.sh @@ -34,7 +34,7 @@ function update_script() { current_version=$(ghost version | grep 'Ghost-CLI version' | awk '{print $3}') latest_version=$(npm show ghost-cli version) if [ "$current_version" != "$latest_version" ]; then - msg_info "Updating ${APP} from version $current_version to $latest_version" + msg_info "Updating ${APP} from version v${current_version} to v${latest_version}" npm install -g ghost-cli@latest &> /dev/null msg_ok "Updated Successfully" else