ci: change check-vendor to verify git status has no changes (#9615)

This commit is contained in:
Alvin Huang 2021-01-21 18:29:26 -05:00 committed by hashicorp-ci
parent c1ef166f37
commit a62e4496ba
1 changed files with 3 additions and 2 deletions

View File

@ -143,8 +143,9 @@ jobs:
- run:
command: make update-vendor
- run: |
if ! git diff --exit-code; then
echo "Git directory has vendor changes"
if [[ -z $(git status -s) ]]; then
echo "Git directory has changes"
git status -s
exit 1
fi
- run: *notify-slack-failure