We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5fd1715 commit 36f2ac7Copy full SHA for 36f2ac7
2 files changed
.github/workflows/release.yml
@@ -48,7 +48,7 @@ jobs:
48
49
- name: Compress with UPX
50
run: |
51
- upx --best --lzma openboot-${{ matrix.os }}-${{ matrix.arch }}
+ upx --best --lzma --force-macos openboot-${{ matrix.os }}-${{ matrix.arch }}
52
ls -lh openboot-${{ matrix.os }}-${{ matrix.arch }}
53
54
- name: Upload artifact
Makefile
@@ -35,7 +35,7 @@ build-release:
35
@echo "Original size: $$(du -h $(BINARY_PATH) | cut -f1)"
36
@if command -v upx >/dev/null 2>&1; then \
37
echo "Compressing with UPX..."; \
38
- upx --best --lzma $(BINARY_PATH); \
+ upx --best --lzma --force-macos $(BINARY_PATH); \
39
echo "Compressed size: $$(du -h $(BINARY_PATH) | cut -f1)"; \
40
else \
41
echo "UPX not found. Install with: brew install upx"; \
0 commit comments