-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
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
fix: various fixes for "Build and test library" action #91
Conversation
9c63388
to
738d187
Compare
f713ec9
to
738d187
Compare
NOTE: Go bindings are still broken. This is expected and out of the scope for this PR. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ACK 738d187
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 738d187
# in expected paths because they may conflict with system files. Ask | ||
# Homebrew where each one is located, then adjust paths accordingly. | ||
gmp_prefix=`$BREW --prefix gmp 2>/dev/null` | ||
if test x$gmp_prefix != x; then |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
better to have "" around variables, such as if test "x$gmp_prefix" != x; then
but that's moved code, so let it be as it is
No description provided.