You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by an...@apache.org on 2012/10/20 17:10:03 UTC

svn commit: r1400470 - /jena/trunk/jena-fuseki/fuseki-server

Author: andy
Date: Sat Oct 20 15:10:02 2012
New Revision: 1400470

URL: http://svn.apache.org/viewvc?rev=1400470&view=rev
Log:
Replace bash-specfic use of == with general sh =' fuseki-server

Modified:
    jena/trunk/jena-fuseki/fuseki-server

Modified: jena/trunk/jena-fuseki/fuseki-server
URL: http://svn.apache.org/viewvc/jena/trunk/jena-fuseki/fuseki-server?rev=1400470&r1=1400469&r2=1400470&view=diff
==============================================================================
--- jena/trunk/jena-fuseki/fuseki-server (original)
+++ jena/trunk/jena-fuseki/fuseki-server Sat Oct 20 15:10:02 2012
@@ -50,7 +50,8 @@ cygwin=false
 case "`uname`" in
     CYGWIN*) cygwin=true;;
 esac
-if [ "$cygwin" == "true" ]; then
+if [ "$cygwin" = "true" ]
+then
     JAR=`cygpath -w "$JAR"`
     FUSEKI_HOME=`cygpath -w "$FUSEKI_HOME"`
 fi