From 94ba876b83c3f075fdfca97f3b3ca526f269bc69 Mon Sep 17 00:00:00 2001 From: Kjeld Schouten-Lebbing Date: Sat, 7 May 2022 18:05:47 +0200 Subject: [PATCH] Update bump.sh --- tools/bump.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/bump.sh b/tools/bump.sh index 2885e051..12ae7e8b 100755 --- a/tools/bump.sh +++ b/tools/bump.sh @@ -41,9 +41,9 @@ function incr_semver() { BUMPTYPE=${1} if [ -z ${2+x} ]; then for train in stable incubator games enterprise develop non-free deprecated dependency core; do - for chart in charts/${train}/*; do + for chart in charts/*; do if [ -d "${chart}" ]; then - echo "Bumping patch version for ${train}/${chart}" + echo "Bumping patch version for ${chart}" OLDVER=$(cat ${chart}/Chart.yaml | grep "^version: ") OLDVER=${OLDVER#version: } NEWVER=$(incr_semver ${OLDVER} ${BUMPTYPE})