summaryrefslogtreecommitdiff
path: root/tool
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2020-09-05 23:15:59 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2020-09-05 23:16:23 +0900
commitdd83d0c599a41c8133f6d79c7f1670db31176958 (patch)
treef05db6d7c8ea8c4c3ab437f6454cca3aa7f41498 /tool
parent5c49bb5486587794ab64dca65f535bf0f4c7c249 (diff)
update-deps: ruby-runner is not a target
Diffstat (limited to 'tool')
-rwxr-xr-xtool/update-deps2
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/update-deps b/tool/update-deps
index 07c14dce62..c59debee77 100755
--- a/tool/update-deps
+++ b/tool/update-deps
@@ -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?