Skip to content

Commit

Permalink
Fix console colours.
Browse files Browse the repository at this point in the history
  • Loading branch information
milessabin committed May 27, 2015
1 parent d464534 commit c2cae0f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions release.scalascript
Expand Up @@ -69,11 +69,11 @@ object CrossBranchRelease {
val VERSION_FILE = "version.sbt"

def logInfo(msg: String): Unit = {
println(s"${Console.GREEN}$msg ${Console.WHITE}")
println(s"${Console.GREEN}$msg ${Console.RESET}")
}

def logError(msg: String): Unit = {
System.err.println(s"${Console.RED}$msg${Console.WHITE}")
System.err.println(s"${Console.RED}$msg${Console.RESET}")
}

def run(cmd: String): Try[String] = Try {
Expand Down

0 comments on commit c2cae0f

Please sign in to comment.