mirror of https://github.com/sbt/sbt.git
Removed unicode arrow
This commit is contained in:
parent
79ef772219
commit
2c52efeca5
|
|
@ -27,7 +27,7 @@ object BasicCommands {
|
|||
|
||||
def helpParser(s: State) =
|
||||
{
|
||||
val h = (Help.empty /: s.definedCommands) { (a, b) ⇒
|
||||
val h = (Help.empty /: s.definedCommands) { (a, b) =>
|
||||
a ++
|
||||
(try b.help(s) catch { case ex: Throwable => Help.empty })
|
||||
}
|
||||
|
|
@ -41,7 +41,7 @@ object BasicCommands {
|
|||
val message = try
|
||||
Help.message(h, arg)
|
||||
catch {
|
||||
case ex: Throwable ⇒
|
||||
case ex: Throwable =>
|
||||
ex.toString
|
||||
}
|
||||
System.out.println(message)
|
||||
|
|
|
|||
Loading…
Reference in New Issue