mirror of
https://github.com/containers/podman.git
synced 2025-05-22 09:36:57 +08:00

* Make sure that all vendored dependencies are in sync with the code and the vendor.conf by running `make vendor` with a follow-up status check of the git tree. * Vendor ginkgo and gomega to include the test dependencies. Signed-off-by: Chris Evic <cevich@redhat.com> Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
14 lines
213 B
Bash
Executable File
14 lines
213 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
STATUS=$(git status --porcelain)
|
|
if [[ -z $STATUS ]]
|
|
then
|
|
echo "tree is clean"
|
|
else
|
|
echo "tree is dirty, please commit all changes and sync the vendor.conf"
|
|
echo ""
|
|
echo $STATUS
|
|
exit 1
|
|
fi
|