change how to check for dependencies

This commit is contained in:
2025-07-25 21:25:01 -07:00
parent 11909e8502
commit c80204579f
3 changed files with 7 additions and 11 deletions

View File

@@ -19,11 +19,7 @@ build: build-dev
build-release:
@rm -rf ./EpochSilicon.app
@echo "Building optimized release version..."
CGO_ENABLED=1 GOOS=darwin GOARCH=arm64 go build \
-ldflags="-s -w \
-trimpath \
-tags=release \
-o epochsilicon .
CGO_ENABLED=1 GOOS=darwin GOARCH=arm64 go build -ldflags="-s -w" -trimpath -tags=release -o epochsilicon .
@echo "Packaging with fyne..."
GOOS=darwin GOARCH=arm64 fyne package --release --executable epochsilicon
@echo "Copying additional resources to app bundle..."