diff options
Diffstat (limited to '')
-rw-r--r-- | app/RemovePath.hs | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/app/RemovePath.hs b/app/RemovePath.hs index ed29f3a..6954359 100644 --- a/app/RemovePath.hs +++ b/app/RemovePath.hs @@ -10,10 +10,12 @@ module Main (main) where import Control.Monad (void, when) import Control.Monad.Trans.Except (catchE, runExceptT, throwE) import Data.Monoid ((<>)) +import Data.Version (showVersion) import System.IO.Error (ioError, isDoesNotExistError) import Options.Applicative +import qualified Paths_windows_env as Meta import qualified WindowsEnv import Utils.Prompt @@ -50,8 +52,13 @@ optionParser = Options main :: IO () main = execParser parser >>= removePath where - parser = info (helper <*> optionParser) $ - fullDesc <> progDesc "Remove directories from your PATH" + parser = info (helper <*> versioner <*> optionParser) + $ fullDesc + <> progDesc "Remove directories from your PATH" + versioner = infoOption (showVersion Meta.version) + $ long "version" + <> help "Show version" + <> hidden removePath :: Options -> IO () removePath options = runExceptT doRemovePath >>= either ioError return |