diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2016-08-20 15:54:43 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2016-08-20 15:54:43 +0300 |
commit | 87ae152b71317b99bcbeeab80145ae1f3cf22d83 (patch) | |
tree | 0ba746abfb44730f07cf7681f90e6340cfaa0a9b /apps/RemovePath.hs | |
parent | list_path: no weird symbols in output (diff) | |
download | windows-env-87ae152b71317b99bcbeeab80145ae1f3cf22d83.tar.gz windows-env-87ae152b71317b99bcbeeab80145ae1f3cf22d83.zip |
fix HLint warnings
Diffstat (limited to '')
-rw-r--r-- | apps/RemovePath.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/RemovePath.hs b/apps/RemovePath.hs index 4c4f289..8d9692b 100644 --- a/apps/RemovePath.hs +++ b/apps/RemovePath.hs @@ -52,7 +52,7 @@ main = execParser parser >>= removePath removePath :: Options -> IO () removePath options = do removePathFrom Env.CurrentUser - when forAllUsers $ do + when forAllUsers $ removePathFrom Env.AllUsers where varName = optName options |