self-extract 0.3.1 → 0.3.2
raw patch · 3 files changed
+8/−4 lines, 3 filesdep −processdep ~ztar
Dependencies removed: process
Dependency ranges changed: ztar
Files
- CHANGELOG.md +5/−0
- self-extract.cabal +2/−3
- src/Codec/SelfExtract.hs +1/−1
CHANGELOG.md view
@@ -1,3 +1,8 @@+## self-extract 0.3.2++Fixes:+* Use `GZip` instead of `Zip` (#14), thanks to ztar-0.1.1+ ## self-extract 0.3.1 Other fixes:
self-extract.cabal view
@@ -1,5 +1,5 @@ name: self-extract-version: 0.3.1+version: 0.3.2 license: BSD3 license-file: LICENSE.md author: Brandon Chinn <brandonchinn178@gmail.com>@@ -33,9 +33,8 @@ , file-embed >= 0.0.10 && < 0.1 , path >= 0.6 && < 0.7 , path-io >= 1.3 && < 1.4- , process >= 1.6 && < 1.7 , unix-compat >= 0.5 && < 0.6- , ztar >= 0.1 && < 0.2+ , ztar >= 0.1.1 && < 0.2 ghc-options: -Wall if flag(dev) ghc-options: -Werror
src/Codec/SelfExtract.hs view
@@ -115,7 +115,7 @@ (fromAbsFile exeWithSize) let archive = tempDir </> [relfile|bundle.tar.gz|]- create Zip (fromAbsFile archive) $ toFilePath dir+ create GZip (fromAbsFile archive) $ toFilePath dir let combined = tempDir </> [relfile|exe_and_bundle|] cat [exeWithSize, archive] combined