change(Apps): Project-Eclipse 3, Automatically generate item.yaml (#1178)

* change(Apps): automatically generate item.yaml

* bump jacket for testing

* update dev devcontainer reference

* update container versions
This commit is contained in:
Kjeld Schouten-Lebbing
2021-10-19 17:59:59 +02:00
committed by GitHub
parent 0ca59f4682
commit 8fbddf53ef
322 changed files with 821 additions and 487 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 "merging item.yaml into chart.yaml"
cat ${chart}/SCALE/item.yaml >> ${chart}/chart.yaml
fi
done
done