Delete tools/mergeitems.sh

Signed-off-by: Kjeld Schouten <kjeld@schouten-lebbing.nl>
This commit is contained in:
Kjeld Schouten 2023-12-14 13:08:25 +01:00 committed by GitHub
parent b528682013
commit 83bb9810a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 13 deletions

View File

@ -1,13 +0,0 @@
#!/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 "merging item.yaml into chart.yaml"
cat ${chart}/SCALE/item.yaml >> ${chart}/chart.yaml
fi
done
done