From 52f3abd174452ce85cb43eb851984447d8c639ae Mon Sep 17 00:00:00 2001 From: Shreyas Rao <42259948+shreyas-s-rao@users.noreply.github.com> Date: Mon, 8 Aug 2022 20:02:09 +0530 Subject: [PATCH] Fix .ci/bump_tag script (#399) Signed-off-by: Shreyas Rao --- .ci/bump_tag | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.ci/bump_tag b/.ci/bump_tag index f10a16d05..08b5246b0 100755 --- a/.ci/bump_tag +++ b/.ci/bump_tag @@ -18,5 +18,5 @@ set -o errexit set -o nounset set -o pipefail -version=$(cat ../VERSION) -sed -i "s/v[0-9]*.[0-9]*\.[0-9]*/${version}/g" ../config/default/manager_image_patch.yaml \ No newline at end of file +version=$(cat $REPO_DIR/VERSION) +sed -i "s/v[0-9]*.[0-9]*\.[0-9]*/${version}/g" $REPO_DIR/config/default/manager_image_patch.yaml