From 606ac0d9068d4b01da396f86af4a5119c31e2b3c Mon Sep 17 00:00:00 2001 From: Rajesh Rajendran Date: Wed, 19 Apr 2023 11:32:16 +0200 Subject: [PATCH] chore(cli): Updating comment (#1184) Signed-off-by: rjshrjndrn --- scripts/helmcharts/openreplay-cli | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/scripts/helmcharts/openreplay-cli b/scripts/helmcharts/openreplay-cli index d0e946071..0b417f916 100755 --- a/scripts/helmcharts/openreplay-cli +++ b/scripts/helmcharts/openreplay-cli @@ -364,7 +364,11 @@ do exit 0 ;; -u | --upgrade) - log title "Upgrading OpenReplay" + if [[ $RELEASE_UPGRADE -eq 1 ]]; then + log title "Upgrading OpenReplay to latest release" + else + log title "Fetching OpenReplay Patches" + fi upgrade clean_tmp_dir exit 0