aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/apps
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2017-01-16 05:08:00 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2017-01-16 05:08:00 +0300
commiteb64b221eb101c51c815f57fae6cf29502ca987b (patch)
tree2f5625a1ad3f49769c7fe187150ebfa01f24cb0a /apps
parentrename source files (diff)
downloadwindows-env-eb64b221eb101c51c815f57fae6cf29502ca987b.tar.gz
windows-env-eb64b221eb101c51c815f57fae6cf29502ca987b.zip
code style
Diffstat (limited to '')
-rw-r--r--apps/AddPath.hs5
-rw-r--r--apps/ListPaths.hs17
2 files changed, 12 insertions, 10 deletions
diff --git a/apps/AddPath.hs b/apps/AddPath.hs
index 7e5ae65..571012d 100644
--- a/apps/AddPath.hs
+++ b/apps/AddPath.hs
@@ -65,8 +65,9 @@ addPath options = runExceptT doAddPath >>= either ioError return
skipPrompt = optYes options
- emptyIfMissing e | isDoesNotExistError e = return ""
- | otherwise = throwE e
+ emptyIfMissing e
+ | isDoesNotExistError e = return ""
+ | otherwise = throwE e
doAddPath = do
oldValue <- Env.query profile varName `catchE` emptyIfMissing
diff --git a/apps/ListPaths.hs b/apps/ListPaths.hs
index 65d374b..dee24d3 100644
--- a/apps/ListPaths.hs
+++ b/apps/ListPaths.hs
@@ -57,13 +57,13 @@ optionParser = Options
<> help "List global (all users') paths only")
main :: IO ()
-main = execParser parser >>= listPath
+main = execParser parser >>= listPaths
where
parser = info (helper <*> optionParser) $
fullDesc <> progDesc "List directories in your PATH"
-listPath :: Options -> IO ()
-listPath options = runExceptT doListPath >>= either ioError return
+listPaths :: Options -> IO ()
+listPaths options = runExceptT doListPaths >>= either ioError return
where
varName = optName options
whichPaths = optWhichPaths options
@@ -74,9 +74,10 @@ listPath options = runExceptT doListPath >>= either ioError return
queryFrom Environment = lift $ fromMaybe "" <$> lookupEnv varName
queryFrom (Registry profile) = Env.query profile varName
- doListPath = do
- paths <- query
- lift $ printPaths $ Env.pathSplit paths
+ filterPaths = filterM $ shouldListPath whichPaths
- printPaths paths =
- filterM (shouldListPath whichPaths) paths >>= mapM_ putStrLn
+ doListPaths = do
+ paths <- Env.pathSplit <$> query
+ lift $ do
+ pathsToPrint <- filterPaths paths
+ mapM_ putStrLn pathsToPrint