You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@thrift.apache.org by cl...@apache.org on 2011/02/19 22:02:22 UTC

svn commit: r1072440 - /thrift/trunk/test/hs/run-test.sh

Author: clavoie
Date: Sat Feb 19 21:02:22 2011
New Revision: 1072440

URL: http://svn.apache.org/viewvc?rev=1072440&view=rev
Log:
Use standard sh syntax instead of bash extensions.

Modified:
    thrift/trunk/test/hs/run-test.sh

Modified: thrift/trunk/test/hs/run-test.sh
URL: http://svn.apache.org/viewvc/thrift/trunk/test/hs/run-test.sh?rev=1072440&r1=1072439&r2=1072440&view=diff
==============================================================================
--- thrift/trunk/test/hs/run-test.sh (original)
+++ thrift/trunk/test/hs/run-test.sh Sat Feb 19 21:02:22 2011
@@ -19,7 +19,7 @@
 # under the License.
 #
 
-if [ "x" == "x$1" ]; then
+if [ "x" = "x$1" ]; then
   printf "run-test.sh needs an argument, the name of the test to run. Try 'ThriftTest' or 'ProtoDebugTest'\n"
   exit 2
 fi