From 563e23b501ec9691431ca31ae1ed831b2ba3189b Mon Sep 17 00:00:00 2001 From: Clemens Schmid Date: Sat, 5 Mar 2022 20:42:44 +0100 Subject: [PATCH] replaced special characters in the validate subcommand output --- src/NASSA/CLI/Validate.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NASSA/CLI/Validate.hs b/src/NASSA/CLI/Validate.hs index 3a85b01..aad277e 100644 --- a/src/NASSA/CLI/Validate.hs +++ b/src/NASSA/CLI/Validate.hs @@ -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 \ No newline at end of file