rename .tools to tools

This commit is contained in:
kjeld Schouten-Lebbing
2021-05-30 13:14:37 +02:00
parent 8b76a14c73
commit 7e63572201
17 changed files with 12 additions and 12 deletions
+13
View File
@@ -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