15 lines
382 B
Bash
Executable File
15 lines
382 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
cd $(dirname $0)/..
|
|
|
|
echo Running general chart validation
|
|
|
|
if [ -d ./.charts-build-scripts/.cache ]; then
|
|
echo "Due to a bug in the golang Git library, you must fully clean the repo first"
|
|
echo "Clearing out the charts build cache now..."
|
|
rm -rf ./.charts-build-scripts/.cache
|
|
fi
|
|
|
|
./scripts/pull-scripts
|
|
./bin/charts-build-scripts validate --local |