We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I wanted to try this out, but had a bunch of issues, here's how I resolved them.
Default jp package for homebrew isn't JMSEPath.
jp
brew remove jp brew tap jmespath/jmespath brew install jmespath/jmespath/jp
I had to add darwn/arm64 to build.sh
❯ git diff build.sh diff --git a/build.sh b/build.sh index 96b2d09..030a3e3 100755 --- a/build.sh +++ b/build.sh @@ -33,7 +33,7 @@ for arch in 386 arm64 amd64 do linux_compile "$arch" done -for dist in windows/amd64 windows/386 darwin/amd64 freebsd/amd64 js/wasm netbsd/amd64 openbsd/amd64 +for dist in windows/amd64 windows/386 darwin/arm64 darwin/amd64 freebsd/amd64 js/wasm netbsd/amd64 openbsd/amd64 do cross_compile "$dist" done
If you want to bypass the build.sh step:
GOOS=darwin GOARCH=arm64 go build -a -ldflags="-X 'main.Version=$(git describe)'" -o frangipanni_"$GOOS"_"$GOARCH" frangipanni.go
Enjoy!
The text was updated successfully, but these errors were encountered:
birchb1024
When branches are created from issues, their pull requests are automatically linked.
I wanted to try this out, but had a bunch of issues, here's how I resolved them.
Default
jp
package for homebrew isn't JMSEPath.I had to add darwn/arm64 to build.sh
If you want to bypass the build.sh step:
Enjoy!
The text was updated successfully, but these errors were encountered: