aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Christopher Vogt <oss.nsp@cvogt.org>2016-10-02 18:14:02 -0400
committerGitHub <noreply@github.com>2016-10-02 18:14:02 -0400
commite185113257ef7f38460f93fa1ccc93415b7055f9 (patch)
tree319835bcd4f34b0468d0317b1150f3c3dc779efd
parent3e35d0809240a3379dd3d71d42655e00b9cff421 (diff)
parent02d4c2c23dfd15a5edd33672701961e0fc9092df (diff)
downloadcbt-e185113257ef7f38460f93fa1ccc93415b7055f9.tar.gz
cbt-e185113257ef7f38460f93fa1ccc93415b7055f9.tar.bz2
cbt-e185113257ef7f38460f93fa1ccc93415b7055f9.zip
Merge pull request #256 from rockjam/pick-one
fix pickOne error message
-rw-r--r--stage1/Stage1Lib.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/stage1/Stage1Lib.scala b/stage1/Stage1Lib.scala
index 5e65018..7620fd8 100644
--- a/stage1/Stage1Lib.scala
+++ b/stage1/Stage1Lib.scala
@@ -136,7 +136,7 @@ class Stage1Lib( val logger: Logger ) extends BaseLib{
None
}
}.getOrElse{
- System.err.println("Using '"++show(choices.head)++"' because System.console() == null. Use `cbt direct <task>` or see https://github.com/cvogt/cbt/issues/236")
+ System.err.println("System.console() == null. Use `cbt direct <task>` or see https://github.com/cvogt/cbt/issues/236")
None
}
}