diff options
author | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2017-02-01 19:38:58 +0100 |
---|---|---|
committer | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2017-02-01 19:45:42 +0100 |
commit | a9fb1113235afcd2646f3026a7e25f6dcd253afd (patch) | |
tree | d15c5b286ad0020c8df16bc6cf5f63b388fc13e1 | |
parent | 8087d70c4ee47b426a56177ef6b50d92e2e58998 (diff) |
Ruby sucks.
-rwxr-xr-x | Rakefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -93,7 +93,7 @@ task 'dlls' do [ w64, w32 ].each do |opt| env_comp = "CC=#{opt[:cross]}-gcc " env_comp += "LD=#{opt[:cross]}-gcc " - docker_for_windows "#{env} #{env_comp} make -j #{out} && #{opt[:cross]}-strip -x -S #{out} && cp #{out} #{opt[:out]}" + docker_for_windows "gem update --system && #{env} #{env_comp} make -j #{out} && #{opt[:cross]}-strip -x -S #{out} && cp #{out} #{opt[:out]}" end end @@ -110,7 +110,7 @@ task 'gem:native' do system "rake cross native gem RUBY_CC_VERSION=2.4.0:2.3.0:2.2.2:2.1.5:2.0.0 V=#{verbose} GRPC_CONFIG=#{grpc_config}" else Rake::Task['dlls'].execute - docker_for_windows "bundle && rake cross native gem RUBY_CC_VERSION=2.4.0:2.3.0:2.2.2:2.1.5:2.0.0 V=#{verbose} GRPC_CONFIG=#{grpc_config}" + docker_for_windows "gem update --system && bundle && rake cross native gem RUBY_CC_VERSION=2.4.0:2.3.0:2.2.2:2.1.5:2.0.0 V=#{verbose} GRPC_CONFIG=#{grpc_config}" end end |