dc49f84dcc
Update Makefile targets Signed-off-by: Derek McGowan <derek@mcgstyle.net>
20 lines
306 B
Bash
Executable file
20 lines
306 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -eu -o pipefail
|
|
|
|
rm -rf vendor/
|
|
vndr |& grep -v -i clone
|
|
|
|
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
|