# HG changeset patch # User Thomas Arendsen Hein # Date 1143737026 -7200 # Node ID 3bdd3bf17cfa33859f5ab1ab5b4735de8c8dbec4 # Parent a59da8cc35e416de70a456c8ebfc35e1ccb4ecbb Use [ x = y ] instead of [ x == y ] in shell scripts. diff -r a59da8cc35e4 -r 3bdd3bf17cfa tests/run-tests --- a/tests/run-tests Wed Mar 29 22:58:34 2006 +0200 +++ b/tests/run-tests Thu Mar 30 18:43:46 2006 +0200 @@ -20,7 +20,7 @@ HGUSER="test"; export HGUSER HGRCPATH=""; export HGRCPATH -if [ `echo -n HG` == "-n HG" ] +if [ `echo -n HG` = "-n HG" ] then ECHO_N=echo NNL="\c"