On Sat, Feb 09, 2008 at 09:15:30PM -0500, Jay Soffian wrote: > > I guess I'm confused by the criticism as I thought that's what I did. > "open" is only added to the list of browsers to try if the > SECURITYSESSIONID environment variable is set (indicating an OS X GUI > login environment). I don't see how the change I made could adversely > impact the users of other systems. Would not be better to use uname instead like this if test "$(uname -s)" == "Darwin"; then ... or in addition to SECURITYSESSIONID: if test -n "$SECURITYSESSIONID" -a "$(uname -s)" == "Darwin"; then ... ? I think it would be more reliable and more importantly it makes the code easier to understand, because it is clear now for everyone that this is OS X specific. BTW, should not it be mentioned in the documentation? Probably, in the list of supported web browsers in git-help.txt. Dmitry - 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