summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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?