mirror of
https://github.com/containers/podman.git
synced 2026-07-08 22:35:01 -04:00
19 lines
396 B
Bash
Executable File
19 lines
396 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
SUGGESTION="${SUGGESTION:-run \"make vendor\" and commit all changes.}"
|
|
|
|
STATUS=$(git status --porcelain)
|
|
if [[ -z $STATUS ]]; then
|
|
echo "tree is clean"
|
|
else
|
|
echo "tree is dirty, please $SUGGESTION"
|
|
echo ""
|
|
echo "$STATUS"
|
|
echo ""
|
|
echo "---------------------- Diff below ----------------------"
|
|
echo ""
|
|
git --no-pager diff
|
|
exit 1
|
|
fi
|