Ticket #23366: clj.patch

File clj.patch, 329 bytes (added by jsg8pitt@…, 15 years ago)

Fixes the behavior of the command line args in the clojure shell wrapper.

  • (a) clj vs. (b) clj-new

    a b  
    3535  exec java -classpath $cp $jlineclass $cljclass
    3636else
    3737  scriptname=$1
    38   exec java -classpath $cp $jlineclass $cljclass $scriptname -- $*
     38  shift
     39  exec java -classpath $cp $jlineclass $cljclass $scriptname $*
    3940fi