Re: [PATCH 1/2] t9902: fix 'test A == B' to use = operator

2013-07-09 Thread Thomas Rast
Junio C Hamano gits...@pobox.com writes: Thomas Rast tr...@inf.ethz.ch writes: The == operator as an alias to = is not POSIX. This doesn't actually matter for the execution of the script, because it only runs when the shell is bash. However, it trips up test-lint, so it's nicer to use the

Re: [PATCH 1/2] t9902: fix 'test A == B' to use = operator

2013-07-08 Thread Junio C Hamano
Thomas Rast tr...@inf.ethz.ch writes: The == operator as an alias to = is not POSIX. This doesn't actually matter for the execution of the script, because it only runs when the shell is bash. However, it trips up test-lint, so it's nicer to use the standard form. OK, my knee-jerk reaction