aboutsummaryrefslogtreecommitdiff
path: root/stage2
diff options
context:
space:
mode:
authorJan Christopher Vogt <oss.nsp@cvogt.org>2017-03-12 15:49:08 -0400
committerGitHub <noreply@github.com>2017-03-12 15:49:08 -0400
commitc14e288996d2b56b6b06a0624f4f2fca315369c7 (patch)
tree5fde2735672672582aa5681acc146a8d0d3d60e9 /stage2
parenta6eadada6e6d1f9efa1b5edecef5ce42b2099706 (diff)
parent8567e2557467f838e371fd8e6b267d5a417ef78e (diff)
downloadcbt-c14e288996d2b56b6b06a0624f4f2fca315369c7.tar.gz
cbt-c14e288996d2b56b6b06a0624f4f2fca315369c7.tar.bz2
cbt-c14e288996d2b56b6b06a0624f4f2fca315369c7.zip
Merge pull request #423 from cvogt/chris
various changes
Diffstat (limited to 'stage2')
-rw-r--r--stage2/ToolsStage2.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/stage2/ToolsStage2.scala b/stage2/ToolsStage2.scala
index ba7a27f..7765e82 100644
--- a/stage2/ToolsStage2.scala
+++ b/stage2/ToolsStage2.scala
@@ -2,7 +2,7 @@ package cbt
import java.io._
object ToolsStage2 extends Stage2Base{
def run( _args: Stage2Args ): ExitCode = {
- val args = _args.args.dropWhile(Seq("tools","direct") contains _)
+ val args = _args.args.dropWhile(Seq("tools") contains _)
val lib = new Lib(_args.logger)
val toolsTasks = new ToolsTasks(lib, args, _args.cwd, _args.cache, _args.cbtHome, _args.stage2LastModified)(_args.classLoaderCache)
lib.callReflective(toolsTasks, args.lift(0), null)