Skip to content
This repository has been archived by the owner on Nov 7, 2023. It is now read-only.

Commit

Permalink
4.2.6: Fix TGZ folders
Browse files Browse the repository at this point in the history
  • Loading branch information
DrDonk committed Mar 3, 2023
1 parent 862c34b commit 038feec
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions zipit.sh
@@ -1,5 +1,5 @@
#!/bin/sh
#set -x
set -x

# Read current version
VERSION=$(<VERSION)
Expand All @@ -10,7 +10,9 @@ echo Create distribution files - $VERSION
rm -vf ./dist/unlocker$VERSION.zip
rm -vrf ./dist/unlocker$VERSION
7z a ./dist/unlocker$VERSION.zip ./build/*
tar czvf ./dist/unlocker$VERSION.tgz ./build/*
cd ./build
tar czvf ../dist/unlocker$VERSION.tgz *
cd ..
7z x -o./dist/unlocker$VERSION ./dist/unlocker$VERSION.zip

shasum -a 256 ./dist/unlocker$VERSION.tgz
Expand Down

0 comments on commit 038feec

Please sign in to comment.