mirror of
https://github.com/containers/podman.git
synced 2025-05-17 23:26:08 +08:00
16 lines
257 B
Bash
Executable File
16 lines
257 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
SUGGESTION="${SUGGESTION:-sync the vendor.conf 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"
|
|
exit 1
|
|
fi
|