rename .tools to tools
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
#!/usr/bin/env bash
|
||||
set -eu
|
||||
|
||||
# This script requires pyBump to be installed using pip.
|
||||
|
||||
for train in stable incubator develop non-free deprecated; do
|
||||
for chart in charts/${train}/*; do
|
||||
if [ -d "${chart}" ]; then
|
||||
echo "Bumping patch version for ${train}/${chart}"
|
||||
pybump bump --file ${chart}/Chart.yaml --level patch
|
||||
fi
|
||||
done
|
||||
done
|
||||
Reference in New Issue
Block a user