ats-pkg 1.2.0.5 → 1.2.0.6
raw patch · 2 files changed
+3/−2 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- ats-pkg.cabal +1/−1
- src/Language/ATS/Package/Type.hs +2/−1
ats-pkg.cabal view
@@ -1,5 +1,5 @@ name: ats-pkg-version: 1.2.0.5+version: 1.2.0.6 synopsis: Package manager for ATS description: A collection of scripts to make building ATS projects easy. homepage: https://github.com/vmchale/ats-pkg#readme
src/Language/ATS/Package/Type.hs view
@@ -68,8 +68,9 @@ home <- fromMaybe "" <$> getEnv "HOME" let binDest = ((home <> "/.local/bin/") <>) . takeBaseName <$> bins void $ zipWithM copyFile' bins binDest+ pa <- pandoc case man config of- Just mt -> do+ Just mt -> if not pa then pure () else do let mt' = manTarget mt manDest = (home <> "/.local/share/man/man1/") <> mt' need [mt']