diff options
Diffstat (limited to '')
-rw-r--r-- | apps/SetEnv.hs | 2 |
1 files changed, 1 insertions, 1 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 |