cli-setup 0.2.1.1 → 0.2.1.2
raw patch · 3 files changed
+5/−5 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG.md +1/−1
- cli-setup.cabal +1/−1
- src/Distribution/CommandLine.hs +3/−3
CHANGELOG.md view
@@ -1,6 +1,6 @@ # cli-setup -# 0.2.1.1+# 0.2.1.2 * Install to `/usr/local/share/man/man1` on Mac
cli-setup.cabal view
@@ -1,6 +1,6 @@ cabal-version: 1.18 name: cli-setup-version: 0.2.1.1+version: 0.2.1.2 license: BSD3 license-file: LICENSE copyright: Copyright: (c) 2018-2019 Vanessa McHale
src/Distribution/CommandLine.hs view
@@ -91,9 +91,9 @@ manPath :: IO (Maybe FilePath) manPath = case os of- "linux" -> manPathLinux- "osx" -> pure $ Just "/usr/local/share/man/man1"- _ -> pure Nothing+ "linux" -> manPathLinux+ "darwin" -> pure $ Just "/usr/local/share/man/man1"+ _ -> pure Nothing -- | Add a line to the user's @bashrc@ so that command-line completions work -- automatically.