Github user andrewor14 commented on a diff in the pull request:

    https://github.com/apache/spark/pull/2229#discussion_r17089587
  
    --- Diff: bin/spark-class ---
    @@ -153,9 +153,9 @@ if [[ "$1" =~ org.apache.spark.tools.* ]]; then
     fi
     
     if $cygwin; then
    -  CLASSPATH=`cygpath -wp $CLASSPATH`
    +  CLASSPATH=`cygpath -wp "$CLASSPATH"`
       if [ "$1" == "org.apache.spark.tools.JavaAPICompletenessChecker" ]; then
    -    export SPARK_TOOLS_JAR=`cygpath -w $SPARK_TOOLS_JAR`
    +    export SPARK_TOOLS_JAR=`cygpath -w "$SPARK_TOOLS_JAR"`
    --- End diff --
    
    Do we want to put quotes around the whole thing as well?
    ```
    export SPARK_TOOLS_JAR="`cygpath -w "$SPARK_TOOLS_JAR"`"
    ```


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to