Use maybe instead of isJust and fromJust
This commit is contained in:
parent
6595e14d25
commit
392b57b8e8
|
@ -491,7 +491,7 @@ checkBraceExpansionVars = ForShell [Bash] f
|
||||||
toString t = fromJust $ getLiteralStringExt literalExt t
|
toString t = fromJust $ getLiteralStringExt literalExt t
|
||||||
isEvaled t = do
|
isEvaled t = do
|
||||||
cmd <- getClosestCommandM t
|
cmd <- getClosestCommandM t
|
||||||
return $ isJust cmd && fromJust cmd `isUnqualifiedCommand` "eval"
|
return $ maybe False (`isUnqualifiedCommand` "eval") cmd
|
||||||
|
|
||||||
|
|
||||||
prop_checkMultiDimensionalArrays1 = verify checkMultiDimensionalArrays "foo[a][b]=3"
|
prop_checkMultiDimensionalArrays1 = verify checkMultiDimensionalArrays "foo[a][b]=3"
|
||||||
|
|
Loading…
Reference in New Issue