packages feed

self-extract 0.3.0 → 0.3.1

raw patch · 3 files changed

+7/−2 lines, 3 files

Files

CHANGELOG.md view
@@ -1,3 +1,8 @@+## self-extract 0.3.1++Other fixes:+* Uses `Zip` instead of `GZip`, due to filename limits in tar (#14)+ ## self-extract 0.3.0  Breaking fixes:
self-extract.cabal view
@@ -1,5 +1,5 @@ name:                self-extract-version:             0.3.0+version:             0.3.1 license:             BSD3 license-file:        LICENSE.md author:              Brandon Chinn <brandonchinn178@gmail.com>
src/Codec/SelfExtract.hs view
@@ -115,7 +115,7 @@       (fromAbsFile exeWithSize)      let archive = tempDir </> [relfile|bundle.tar.gz|]-    create GZip (fromAbsFile archive) $ toFilePath dir+    create Zip (fromAbsFile archive) $ toFilePath dir      let combined = tempDir </> [relfile|exe_and_bundle|]     cat [exeWithSize, archive] combined