restic/vendor/github.com/cpuguy83/go-md2man/script/validate/vendor
2018-03-30 11:48:16 +02:00

18 lines
276 B
Bash
Executable file

#!/usr/bin/env bash
set -eu -o pipefail
dep ensure
DIFF_PATH="vendor/"
DIFF=$(git status --porcelain -- "$DIFF_PATH")
if [ "$DIFF" ]; then
echo
echo "These files were modified:"
echo
echo "$DIFF"
echo
exit 1
else
echo "$DIFF_PATH is correct"
fi