bootstrap patch

2014-01-26 Thread Bruce Korb
Hi, "test -f .git"? Do you mean "test -d .git"? Anyway, if you want to test for "are we in a git repo hierarchy?" would not "git rev-parse --git-dir" be better? diff --git a/bootstrap b/bootstrap index 2094e73..b84fa63 100755 --- a/bootstrap +++ b/bootstrap @@ -230,7 +230,7 @@ vc_ignore= # S

Re: bootstrap patch

2014-01-26 Thread Gary V. Vaughan
Hi Bruce, On Jan 27, 2014, at 7:08 AM, Bruce Korb wrote: > Hi, > > "test -f .git"? Do you mean "test -d .git"? D'oh! Yes. I made a hasty change from test -f .gitignore... which was even more misguided. I pushed the s|-f|-d| fix already. Thank you! > Anyway, if you want to test for "are we