cli-setup 0.2.0.0 → 0.2.0.1
raw patch · 2 files changed
+2/−2 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- cli-setup.cabal +1/−1
- src/Distribution/CommandLine.hs +1/−1
cli-setup.cabal view
@@ -1,5 +1,5 @@ name: cli-setup-version: 0.2.0.0+version: 0.2.0.1 synopsis: Helper setup scripts for packaging command-line tools. description: Provides functions to set up manpages and shell completions. Intended to be used in the @Setup.hs@ module. homepage: https://github.com/vmchale/cli-setup#readme
src/Distribution/CommandLine.hs view
@@ -27,7 +27,7 @@ case h of Just h' -> do proceed <- doesDirectoryExist (h' ++ "/.config/thefuck/rules")- bool (pure ()) (writeFile rules (h' ++ "/.config/thefuck/rules/optparse-applicative.py")) proceed+ bool (pure ()) (writeFile (h' ++ "/.config/thefuck/rules/optparse-applicative.py") rules) proceed Nothing -> pure () -- | Add a line exporting the modified @MANPATH@ to the user's @bashrc@, if it