File tree Expand file tree Collapse file tree 3 files changed +13
-3
lines changed Expand file tree Collapse file tree 3 files changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -18,17 +18,24 @@ if [[ -z "$TAG" ]]; then
1818 exit 0
1919fi
2020
21- GHR_VERSION=" v0.5.4"
22-
2321# Install ghr
22+ GHR_VERSION=" v0.5.4"
2423wget --quiet \
2524 " https://github.com/tcnksm/ghr/releases/download/${GHR_VERSION} /ghr_${GHR_VERSION} _linux_386.zip"
2625unzip ghr_${GHR_VERSION} _linux_386.zip
2726
27+ # Install upx
28+ UPX_VERSION=" 3.94"
29+ wget --quiet \
30+ " https://github.com/upx/upx/releases/download/v${UPX_VERSION} /upx-${UPX_VERSION} -amd64_linux.tar.xz"
31+ tar xf upx-${UPX_VERSION} -amd64_linux.tar.xz
32+ mv upx-${UPX_VERSION} -amd64_linux/upx .
33+
2834# Create tarball
2935PACKAGE=" $REPOSITORY -$TAG -$SUFFIX "
3036mkdir -p " $PACKAGE "
3137cp " $( which " $BINARY " ) " " $PACKAGE "
38+ ./upx " $PACKAGE /$BINARY "
3239cp README.* " $PACKAGE "
3340tar -czf " $PACKAGE .tar.gz" " $PACKAGE "
3441rm -r " $PACKAGE "
Original file line number Diff line number Diff line change 11# CHANGELOG
22
3+ - 0.9.0.1 (2017-12-29)
4+ * Fix missing Extra-source-file in cabal file
5+
36- 0.9.0.0 (2017-12-26)
47 * Embed the default configuration
58 * Add platform-specific configuration paths (by Jan Tojnar)
Original file line number Diff line number Diff line change 11Name : stylish-haskell
2- Version : 0.9.0.0
2+ Version : 0.9.0.1
33Synopsis : Haskell code prettifier
44Homepage : https://github.com/jaspervdj/stylish-haskell
55License : BSD3
You can’t perform that action at this time.
0 commit comments