1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Build ruby-runner

This commit is contained in:
Nobuyoshi Nakada 2019-08-10 00:02:17 +09:00
parent 227220b25a
commit 39492d6ce6
No known key found for this signature in database
GPG key ID: 4BC7D6DF58D8DF60

View file

@ -263,7 +263,7 @@ end
def read_make_deps(cwd)
dependencies = {}
make_p, make_p_stderr, make_p_status = Open3.capture3("make -p all miniruby ruby golf")
make_p, make_p_stderr, make_p_status = Open3.capture3("make -p all miniruby ruby-runner golf")
File.open('update-deps.make.out.log', 'w') {|f| f.print make_p }
File.open('update-deps.make.err.log', 'w') {|f| f.print make_p_stderr }
if !make_p_status.success?