Skip to content

Commit

Permalink
Merge pull request #1409 from elm-lang/dev
Browse files Browse the repository at this point in the history
Fix error in code for --version
  • Loading branch information
process-bot committed Jun 7, 2016
2 parents e610efe + f2b1195 commit e44deaf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/CommandLineRouter.hs
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ main =
[] ->
putStrLn usageMessage

"--version" ->
["--version"] ->
putStrLn $ Pkg.versionToString Compiler.version

"-v" ->
["-v"] ->
putStrLn $ Pkg.versionToString Compiler.version

command : args ->
Expand Down

0 comments on commit e44deaf

Please sign in to comment.