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

update-deps: ruby-runner is not a target

This commit is contained in:
Nobuyoshi Nakada 2020-09-05 23:15:59 +09:00
parent 5c49bb5486
commit dd83d0c599
No known key found for this signature in database
GPG key ID: 7CD2805BFA3770C6

View file

@ -262,7 +262,7 @@ end
def read_make_deps(cwd)
dependencies = {}
make_p, make_p_stderr, make_p_status = Open3.capture3("make -p all miniruby ruby-runner golf")
make_p, make_p_stderr, make_p_status = Open3.capture3("make -p all miniruby exe/ruby 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?