Skip to content

Commit

Permalink
fix bug on bump script
Browse files Browse the repository at this point in the history
  • Loading branch information
danielbdias committed Oct 16, 2024
1 parent f2cef8d commit 4723fb7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/bump_charts.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ TRACETEST_COMMON_NAME="tracetest-common"
TRACETEST_COMMON_NEW_VERSION=""

# Loop through the unique charts and run pybump on each Chart.yaml
for chart in "${changed_charts[@]}"; do
chartName=$(basename "$chart")
for chartName in "${changed_charts[@]}"; do
chart="charts/$chartName"
if [[ "$chartName" == "$ONPREM_CHART_NAME" ]]; then
continue
fi
Expand Down

0 comments on commit 4723fb7

Please sign in to comment.