summaryrefslogtreecommitdiffhomepage
path: root/lib
diff options
context:
space:
mode:
authordearblue <[email protected]>2019-12-22 14:01:53 +0900
committerdearblue <[email protected]>2019-12-22 14:26:00 +0900
commitdc15c2838f5aff6c7daddc7993ce2bb4719d634b (patch)
tree9cfd6ac1e1751f297d238c4b693752d928ed9db3 /lib
parent0bd3a67dea823f4f0f21204da89a2a37387efb5b (diff)
downloadmruby-dc15c2838f5aff6c7daddc7993ce2bb4719d634b.tar.gz
mruby-dc15c2838f5aff6c7daddc7993ce2bb4719d634b.zip
Display directory with git command
Diffstat (limited to 'lib')
-rw-r--r--lib/mruby/build/command.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/mruby/build/command.rb b/lib/mruby/build/command.rb
index 2b26ad20b..f2d735c34 100644
--- a/lib/mruby/build/command.rb
+++ b/lib/mruby/build/command.rb
@@ -302,12 +302,12 @@ module MRuby
end
def run_checkout(dir, checksum_hash)
- _pp "GIT CHECKOUT", checksum_hash
+ _pp "GIT CHECKOUT", dir, checksum_hash
_run checkout_options, { :checksum_hash => checksum_hash, :repo_dir => shellquote(dir) }
end
def run_reset_hard(dir, checksum_hash)
- _pp "GIT RESET", checksum_hash
+ _pp "GIT RESET", dir, checksum_hash
_run reset_options, { :checksum_hash => checksum_hash, :repo_dir => shellquote(dir) }
end