-
-
Notifications
You must be signed in to change notification settings - Fork 244
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 installation on arm machines #353
Conversation
@@ -86,6 +86,7 @@ def self.binary_basename(node, resource) | |||
case node['kernel']['machine'] | |||
when 'x86_64', 'amd64' then ['consul', resource.version, node['os'], 'amd64'].join('_') | |||
when /i\d86/ then ['consul', resource.version, node['os'], '386'].join('_') | |||
when /^arm/ then ['consul', resource.version, node['os'], 'arm'].join('_') |
This comment was marked as outdated.
This comment was marked as outdated.
Sorry, something went wrong.
This comment was marked as outdated.
This comment was marked as outdated.
Sorry, something went wrong.
This comment was marked as outdated.
This comment was marked as outdated.
Sorry, something went wrong.
Current coverage is 68.01% (diff: 100%)
|
@legal90 Whats with the failing travis checks. I saw that master is failing as well. |
I'm not sure, but #348 could be a reason of Travis CI build failures. cc: @johnbellone |
@rollbrettler Thanks for the contribution! |
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
There is no
armv7l
package only aarm
package, therefore this throws an error.