aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/apps/UnsetEnv.hs
diff options
context:
space:
mode:
Diffstat (limited to 'apps/UnsetEnv.hs')
-rw-r--r--apps/UnsetEnv.hs18
1 files changed, 9 insertions, 9 deletions
diff --git a/apps/UnsetEnv.hs b/apps/UnsetEnv.hs
index e08c95a..4fd6ccb 100644
--- a/apps/UnsetEnv.hs
+++ b/apps/UnsetEnv.hs
@@ -26,15 +26,15 @@ optionParser = Options
<*> optGlobalDesc
<*> optNameDesc
where
- optYesDesc = switch $
- long "yes" <> short 'y' <>
- help "Skip confirmation prompt"
- optGlobalDesc = switch $
- long "global" <> short 'g' <>
- help "Unset for all users"
- optNameDesc = argument str $
- metavar "NAME" <>
- help "Variable name"
+ optYesDesc = switch
+ $ long "yes" <> short 'y'
+ <> help "Skip confirmation prompt"
+ optGlobalDesc = switch
+ $ long "global" <> short 'g'
+ <> help "Unset for all users"
+ optNameDesc = argument str
+ $ metavar "NAME"
+ <> help "Variable name"
main :: IO ()
main = execParser parser >>= unsetEnv