forked from github-such-software/hash-wallet
dev #17
Reference in New Issue
Block a user
Delete Branch "github-such-software/hash-wallet:dev"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Issue Number (if Applicable): Fixes #
Description
Please include a summary of the changes and which issue is fixed / feature is added.
Pull Request - Checklist
scripts/build_bitbox_flutter.sh invokes build_bindings.sh which calls gomobile to generate iOS bindings for the Go BitBox client. Without Go + gomobile on the Mac runner, that step fails with 'gomobile: command not found'. Adds an idempotent step: install Go via brew if missing, then 'go install golang.org/x/mobile/cmd/{gomobile,gobind}@latest' if missing. Self-hosted runner persists $GOPATH/bin between runs, so steady-state is zero-cost after the first install. Same conditional-install pattern as Flutter + CocoaPods.