mirror of https://git.rancher.io/charts
11 lines
161 B
Plaintext
11 lines
161 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
yq -i release.yaml
|
||
|
|
||
|
if [[ -n $(git status --porcelain release.yaml) ]]; then
|
||
|
echo "release.yaml not following yq style"
|
||
|
exit 1
|
||
|
else
|
||
|
exit 0
|
||
|
fi
|