blob: dc5378baa47bb5a89e8a3df9079e0947b60efba7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/usr/bin/env bash
#
# This script finds all files indexes by git which have the same name when
# looking at them in a case-insensitive manner.
cmd=$(git ls-files | uniq -id)
if [ -z "$cmd" ];
then
exit 0
else
echo "The following files will cause problems on a case-insensitive filesystem"
echo "$cmd"
exit 1
fi
|