From 781fc4213cca6d3c2e62070db02da3a0459c3b57 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 d30434f7c..6a72bb7f3 100755 --- a/scripts/helmcharts/openreplay-cli +++ b/scripts/helmcharts/openreplay-cli @@ -352,7 +352,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