2017-04-21 09:23:45 +00:00
|
|
|
#!/usr/bin/env bash
|
2017-02-01 23:49:32 +00:00
|
|
|
set -o errexit
|
|
|
|
set -o pipefail
|
|
|
|
set -o nounset
|
|
|
|
|
2019-05-06 07:40:04 +00:00
|
|
|
SCRIPT_DIR="$( cd "$( dirname "${0}" )" && pwd -P)"; export SCRIPT_DIR
|
2017-07-06 14:28:13 +00:00
|
|
|
vendor_dir="./vendor/"
|
2017-02-01 23:49:32 +00:00
|
|
|
|
2019-04-01 13:30:07 +00:00
|
|
|
# We run dep install to and see if we have a diff afterwards
|
|
|
|
echo "checking ${vendor_dir} for unintentional changes..."
|
2018-01-11 16:46:04 +00:00
|
|
|
|
2019-04-01 13:30:07 +00:00
|
|
|
dep ensure -v
|
2019-05-06 07:40:04 +00:00
|
|
|
("${SCRIPT_DIR}"/prune-dep.sh)
|
2018-01-11 16:46:04 +00:00
|
|
|
|
2019-04-01 13:30:07 +00:00
|
|
|
# Let see if the working directory is clean
|
|
|
|
diffs="$(git status --porcelain -- ${vendor_dir} 2>/dev/null)"
|
|
|
|
if [[ "$diffs" ]]; then
|
|
|
|
{
|
|
|
|
echo "The result of 'dep ensure' for vendor directory '${vendor_dir}' differs"
|
|
|
|
echo
|
|
|
|
echo "$diffs"
|
|
|
|
echo
|
|
|
|
echo 'Please vendor your package(s) with dep.'
|
|
|
|
echo
|
|
|
|
} >&2
|
|
|
|
exit 2
|
2017-07-06 14:28:13 +00:00
|
|
|
fi
|
2017-02-01 23:49:32 +00:00
|
|
|
|
|
|
|
echo 'Congratulations! All vendoring changes are done the right way.'
|