Skip to content

Commit

Permalink
replaced special characters in the validate subcommand output
Browse files Browse the repository at this point in the history
  • Loading branch information
nevrome committed Mar 5, 2022
1 parent 5fd2059 commit 563e23b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/NASSA/CLI/Validate.hs
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ runValidate (ValidateOptions baseDir noExitCode) = do
numberOfLoadedModules = length yamlCollection
if numberOfNASSAymlFiles == numberOfLoadedModules
then do
hPutStrLn stdout "Validation passed"
hPutStrLn stdout "Validation passed: OK"
unless noExitCode exitSuccess
else do
hPutStrLn stdout "Validation failed"
hPutStrLn stdout "Validation failed: ERROR"
unless noExitCode exitFailure

0 comments on commit 563e23b

Please sign in to comment.