Skip to content

Instantly share code, notes, and snippets.

@tobym
Created October 2, 2010 22:25
Show Gist options
  • Save tobym/608050 to your computer and use it in GitHub Desktop.
Save tobym/608050 to your computer and use it in GitHub Desktop.
patch to fix macports SBT wrapper script
20,26d19
< # Capture any arguments
< QUOTED_ARGS=""
< while [ "$1" != "" ] ; do
< QUOTED_ARGS="$QUOTED_ARGS \"$1\""
< shift
< done
<
33c26
< exec java $JAVA_OPTS -jar "$LAUNCHJAR" $QUOTED_ARGS
---
> exec java $JAVA_OPTS -jar "$LAUNCHJAR" "$@"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment