mirror of https://github.com/sbt/sbt.git
README
This commit is contained in:
parent
f4290b8d04
commit
b46a5fa4b8
|
|
@ -1,4 +1,10 @@
|
|||
sbt: the rebel cut
|
||||
==================
|
||||
|
||||
An alternative script for running [[sbt 0.10|https://github.com/harrah/xsbt]].
|
||||
There's also a template project sbt coming together, but it's unfinished.
|
||||
However the runner is quite useful already.
|
||||
|
||||
|
||||
./sbt -help
|
||||
|
||||
|
|
@ -23,7 +29,8 @@ Usage: sbt [options]
|
|||
-Dkey=val pass -Dkey=val directly to the jvm
|
||||
-J-X pass option -X directly to the jvm (-J is stripped)
|
||||
|
||||
The defaults list for JAVA_OPTS and SBT_OPTS are only given if the
|
||||
The defaults given for JAVA_OPTS and SBT_OPTS are only used if the
|
||||
corresponding variable is unset. In the case of a duplicated option,
|
||||
SBT_OPTS takes precedence over JAVA_OPTS, and command line options
|
||||
take precedence over both.
|
||||
|
||||
|
|
|
|||
4
sbt
4
sbt
|
|
@ -1,6 +1,6 @@
|
|||
#!/usr/bin/env bash
|
||||
#
|
||||
# A more capable sbt runner, coincidentally called sbt.
|
||||
# A more capable sbt runner, coincidentally also called sbt.
|
||||
# Author: Paul Phillips <paulp@typesafe.com>
|
||||
|
||||
set -e
|
||||
|
|
@ -61,7 +61,7 @@ Usage: $script_name [options]
|
|||
-Dkey=val pass -Dkey=val directly to the jvm
|
||||
-J-X pass option -X directly to the jvm (-J is stripped)
|
||||
|
||||
The defaults list for JAVA_OPTS and SBT_OPTS are only given if the
|
||||
The defaults given for JAVA_OPTS and SBT_OPTS are only used if the
|
||||
corresponding variable is unset. In the case of a duplicated option,
|
||||
SBT_OPTS takes precedence over JAVA_OPTS, and command line options
|
||||
take precedence over both.
|
||||
|
|
|
|||
Loading…
Reference in New Issue