diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2017-01-17 02:22:50 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2017-01-17 02:22:50 +0300 |
commit | 7a06ad057d8f237d8ebc6786826ccc1762c5c442 (patch) | |
tree | a985256a75ffa130d3523562a12195c96d3e752e /apps | |
parent | code style (diff) | |
download | windows-env-7a06ad057d8f237d8ebc6786826ccc1762c5c442.tar.gz windows-env-7a06ad057d8f237d8ebc6786826ccc1762c5c442.zip |
refactoring
Diffstat (limited to '')
-rw-r--r-- | apps/SetEnv.hs | 2 | ||||
-rw-r--r-- | apps/UnsetEnv.hs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/SetEnv.hs b/apps/SetEnv.hs index aa8c583..7347cbf 100644 --- a/apps/SetEnv.hs +++ b/apps/SetEnv.hs @@ -48,7 +48,7 @@ main :: IO () main = execParser parser >>= setEnv where parser = info (helper <*> optionParser) $ - fullDesc <> progDesc "Set environment variables" + fullDesc <> progDesc "Define environment variables" setEnv :: Options -> IO () setEnv options = runExceptT doSetEnv >>= either ioError return diff --git a/apps/UnsetEnv.hs b/apps/UnsetEnv.hs index f0352b4..b30ce8a 100644 --- a/apps/UnsetEnv.hs +++ b/apps/UnsetEnv.hs @@ -43,7 +43,7 @@ main :: IO () main = execParser parser >>= unsetEnv where parser = info (helper <*> optionParser) $ - fullDesc <> progDesc "Unset environment variables" + fullDesc <> progDesc "Delete environment variables" unsetEnv :: Options -> IO () unsetEnv options = runExceptT doUnsetEnv >>= either ioError return |