mirror of https://git.rancher.io/charts
17 lines
189 B
Plaintext
17 lines
189 B
Plaintext
|
#!/bin/bash
|
||
|
set -e
|
||
|
|
||
|
cd $(dirname $0)/..
|
||
|
|
||
|
./scripts/prepare
|
||
|
|
||
|
source ./scripts/version
|
||
|
|
||
|
if [ -n "$DIRTY" ]; then
|
||
|
echo Git is dirty
|
||
|
git status
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
./scripts/generate-charts
|