提交 206900fb 编写于 作者: V Vidar Holen

Use exit status and stderr properly in terminal tool

上级 b1af7bb8
......@@ -24,7 +24,6 @@ import System.Environment
import System.Exit
import System.IO
clear = ansi 0
ansi n = "\x1B[" ++ (show n) ++ "m"
......@@ -45,14 +44,14 @@ doFile path colorFunc = do
contents <- readFile actualPath
doInput path contents colorFunc
else do
putStrLn (colorFunc "error" $ "No such file: " ++ actualPath)
hPutStrLn stderr (colorFunc "error" $ "No such file: " ++ actualPath)
return False
doInput filename contents colorFunc = do
let fileLines = lines contents
let lineCount = length fileLines
let comments = shellCheck contents
let groups = groupWith scLine comments
if not $ null comments then do
mapM_ (\x -> do
let lineNum = scLine (head x)
let line = if lineNum < 1 || lineNum > lineCount
......@@ -64,8 +63,7 @@ doInput filename contents colorFunc = do
mapM (\c -> putStrLn (colorFunc (scSeverity c) $ cuteIndent c)) x
putStrLn ""
) groups
else do
putStrLn ("No comments for " ++ filename)
return $ null comments
cuteIndent comment =
(replicate ((scColumn comment) - 1) ' ') ++ "^-- " ++ (scMessage comment)
......@@ -81,6 +79,7 @@ main = do
hPutStrLn stderr "shellcheck -- bash/sh script static analysis tool"
hPutStrLn stderr "Usage: shellcheck filenames..."
exitFailure
else
mapM (\f -> doFile f colors) args
else do
statuses <- mapM (\f -> doFile f colors) args
if and statuses then exitSuccess else exitFailure
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册