Add dash as a first class supported shell.

This commit is contained in:
Vidar Holen 2015-10-13 11:37:50 -07:00
parent 1eece5b2ee
commit f77821625c
5 changed files with 58 additions and 33 deletions

View file

@ -73,7 +73,7 @@ data AnalysisResult = AnalysisResult {
}
-- Supporting data types
data Shell = Ksh | Sh | Bash deriving (Show, Eq)
data Shell = Ksh | Sh | Bash | Dash deriving (Show, Eq)
data ExecutionMode = Executed | Sourced deriving (Show, Eq)
type ErrorMessage = String