This change appears to have been forgotten, but does fix the problems
I was having. Junio, can this make it into the official repo instead
of floating around in my local? I'd send in a patch, but it was your
code and I don't want to take credit for it.
~~ Brian
On Jan 29, 2009, at 2:10 PM, Brian Gernhardt wrote:
On Jan 29, 2009, at 12:19 PM, Junio C Hamano wrote:
If we really wanted to care about case-folding file systems,
shouldn't we
make test_commit shell function a bit more than the downcasing?
How about
this patch instead?
That's a good point. Always good to prevent future issues.
test_commit () {
- file=${2:-$(echo "$1" | tr 'A-Z' 'a-z')}
+ file=${2:-$(echo "$1" | tr 'A-Z' 'a-z').t}
echo "${3-$1}" > "$file" &&
git add "$file" &&
test_tick &&
Added this and ran through the tests. Works for me. :-D
Tested-by: Brian Gernhardt <benji@xxxxxxxxxxxxxxxxxx> (HFS+ on Mac
OS 10.5.6)
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html