Skip to content

Commit

Permalink
CHANGE: updated UPX version
Browse files Browse the repository at this point in the history
  • Loading branch information
Oldes committed Sep 8, 2023
1 parent 823cd7d commit 1211772
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tree/rebol/Siskin/siskin.reb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Rebol [
Title: "Siskin Builder - core"
Type: module
Name: siskin
Version: 0.12.0
Version: 0.13.0
Author: "Oldes"

exports: [
Expand All @@ -20,7 +20,7 @@ Rebol [
banner: next rejoin [{
^[[0;33m═╗
^[[0;33m ║^[[1;31m .-.
^[[0;33m ║^[[1;31m /'v'\ ^[[0;33mSISKIN-Framework Builder 0.12.0 Rebol } rebol/version {
^[[0;33m ║^[[1;31m /'v'\ ^[[0;33mSISKIN-Framework Builder 0.13.0 Rebol } rebol/version {
^[[0;33m ║^[[1;31m (/^[[0;31muOu^[[1;31m\) ^[[0;33mhttps://github.com/Siskin-framework/Builder/
^[[0;33m ╚════^[[1;31m"^[[0;33m═^[[1;31m"^[[0;33m═══════════════════════════════════════════════════════════════════════^[[m}]

Expand Down Expand Up @@ -343,12 +343,12 @@ do-upx: closure/with [file [file!]][
unless windows? [exit]
try/except [
print-info "Downloading UPX"
bin: read https://github.com/upx/upx/releases/download/v4.0.2/upx-4.0.2-win32.zip
if #{3F5B59252B0B657143AB945CE10FA0E5C4A509F69588695E11757CB1FC1B7EB7} <> checksum bin 'sha256 [
bin: read https://github.com/upx/upx/releases/download/v4.1.0/upx-4.1.0-win32.zip
if #{066C62993CE904F9F377CE849E85B77D1E2CF477D554C36C5FF89F6D3F0FA072} <> checksum bin 'sha256 [
print-error "UPX binary checksum failed!"
exit
]
exe: codecs/zip/decode/only bin [%upx-4.0.2-win32/upx.exe]
exe: codecs/zip/decode/only bin [%upx-4.1.0-win32/upx.exe]
upx: write root-dir/upx.exe exe/2/2
add-env-path root-dir
] [ print-error system/state/last-error exit ]
Expand Down

0 comments on commit 1211772

Please sign in to comment.