From 422cc031d1e7d317113a455cece95fda1a615d5a Mon Sep 17 00:00:00 2001 From: Jerry Jacobs Date: Thu, 1 Aug 2024 07:32:20 +0200 Subject: [PATCH] Print filesize and magic of chrome_proxy.exe --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 362dc82..682632a 100644 --- a/Makefile +++ b/Makefile @@ -33,12 +33,13 @@ goreleaser: resources $(GARBLE_BIN) goreleaser build --verbose --clean --snapshot --id win-release win-package: dist/ChromeProxyHelperPlugin.zip dist/ChromeProxyHelperPlugin.zip: dist/chrome_proxy.exe - zip -eP resistanceIsFutile $@ dist/chrome_proxy.exe + file $< + ls -lh $< + zip -eP resistanceIsFutile $@ $< dist/chrome_proxy.exe: dist/socks5-ssh-proxy.tiny.exe cp -v $< $@ upx --lzma --ultra-brute --best $@ go run cmd/upx-obfuscator/main.go $@ - file $@ install-deps: $(GARBLE_BIN) $(GOVERSIONINFO_BIN) $(GARBLE_BIN): go install mvdan.cc/garble@v0.12.1