Land #8108, temporarily fix bundles on aarch64

This commit is contained in:
Jeffrey Martin 2017-03-14 15:48:29 -05:00
parent f06bdad375
commit baf7e01ec8
No known key found for this signature in database
GPG Key ID: 0CD9BBC2AF15F171
1 changed files with 4 additions and 1 deletions

View File

@ -21,7 +21,10 @@ group :development do
# module documentation
gem 'octokit', '~> 4.0'
# session aggregator, native builds have issues on arm platforms for now
gem 'metasploit-aggregator' if !RUBY_PLATFORM.include?('arm')
gem 'metasploit-aggregator' if [
'x86-mingw32', 'x64-mingw32',
'x86_64-linux', 'x86-linux',
'darwin'].include?(RUBY_PLATFORM.gsub(/.*darwin.*/, 'darwin'))
end
group :development, :test do