Skip to content

Commit 0fd8ed5

Browse files
committed
Create bundle as ZIP (better supported by Windows)
1 parent 49cf8b1 commit 0fd8ed5

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

make.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,9 @@ pushd tools/manager && make -j 8 $@ || check_err && popd
1818

1919
pushd ${RELEASE}
2020
# Remove previous bundles
21-
rm *.tar.gz
22-
tar -cvzf whids-${VERSION}-release-bundle.tar.gz *
21+
rm *.zip
22+
7z a -tzip whids-${VERSION}-release-bundle.zip *
23+
2324
popd
2425

2526

tools/whids/makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ installer:
5252
sed -E "s/set VERSION=.*?/set VERSION=$(VERSION)/" manage.bat > $(RELEASE)/windows/manage.bat
5353

5454
sysmon:
55-
cp -r $(RELEASE)/../sysmon $(RELEASE)/windows/
55+
mv $(RELEASE)/../sysmon $(RELEASE)/windows/
5656

5757
dlrules:
5858
mkdir $(RELEASE)/windows/rules/

0 commit comments

Comments
 (0)