mirror of
https://github.com/ruby/setup-ruby.git
synced 2026-09-13 22:44:20 +02:00
Update to latest builds fixing "Insecure world writable dir" warnings
* Update to Rubinius 4.14 which fixes some segfaults.
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
require 'rbconfig'
|
||||
require 'stringio'
|
||||
|
||||
puts "CPPFLAGS: #{RbConfig::CONFIG["CPPFLAGS"]}"
|
||||
|
||||
$stderr = StringIO.new
|
||||
begin
|
||||
system RbConfig.ruby, "-e", "p :OK"
|
||||
out = $stderr.string
|
||||
ensure
|
||||
$stderr = STDERR
|
||||
end
|
||||
abort out unless out.empty?
|
||||
Reference in New Issue
Block a user