Skip to content

Commit

Permalink
CLI+GUI: Simplify user visible version string
Browse files Browse the repository at this point in the history
  • Loading branch information
jaa127 committed Dec 20, 2016
1 parent a23390b commit 9029490
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cli/src/main/scala/co/uproot/abandon/App.scala
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ object CLIMain {
cliConf.verify()

if (cliConf.version.supplied) {
println("Version: " + buildId)
println("Version: " + CliBuildInfo.version + " [" + CliBuildInfo.builtAtString + "]")
} else {
runApp(cliConf)
}
Expand Down
2 changes: 1 addition & 1 deletion gui/src/main/scala/co/uproot/abandon/UI.scala
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ object AbandonUI extends JFXApp {
cliConf.verify()

if (cliConf.version.supplied) {
val msg = "Version: " + buildId
val msg = "Version: " + GuiBuildInfo.version + " [" + GuiBuildInfo.builtAtString + "]"
System.err.println(msg)
}

Expand Down

0 comments on commit 9029490

Please sign in to comment.