Display directory with git command

This commit is contained in:
dearblue
2019-12-22 14:01:53 +09:00
parent 0bd3a67dea
commit dc15c2838f
+2 -2
View File
@@ -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