mirror of
https://github.com/containers/skopeo.git
synced 2025-04-27 11:01:18 +00:00
31 lines
587 B
Bash
Executable File
31 lines
587 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
IFS=$'\n'
|
|
files=( $(git ls-tree -r HEAD --name-only | grep -v '^vendor/' || true) )
|
|
unset IFS
|
|
|
|
badFiles=()
|
|
for f in "${files[@]}"; do
|
|
if [ $(grep -r "^\(<<<<<<<\|>>>>>>>\|^=======$\)" $f) ]; then
|
|
badFiles+=( "$f" )
|
|
continue
|
|
fi
|
|
set -e
|
|
done
|
|
|
|
|
|
if [ ${#badFiles[@]} -eq 0 ]; then
|
|
echo 'Congratulations! There is no conflict.'
|
|
else
|
|
{
|
|
echo "There is trace of conflict(s) in the following files :"
|
|
for f in "${badFiles[@]}"; do
|
|
echo " - $f"
|
|
done
|
|
echo
|
|
echo 'Please fix the conflict(s) commit the result.'
|
|
echo
|
|
} >&2
|
|
exit 1
|
|
fi
|