summaryrefslogtreecommitdiff
path: root/tool/rbinstall.rb
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2021-04-10 11:59:09 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2021-04-10 11:59:09 +0900
commitaf8ac97fcc2c6d43655fa3b9cc650a5400ee4910 (patch)
tree2fcf6e7b50e10e1c982745c3c48c40ca681b890b /tool/rbinstall.rb
parent68a6f6c4abbd554c20ccd85a538dc4576aad87f0 (diff)
downloadruby-af8ac97fcc2c6d43655fa3b9cc650a5400ee4910.tar.gz
rbinstall.rb: append "/" to directory names
Diffstat (limited to 'tool/rbinstall.rb')
-rwxr-xr-xtool/rbinstall.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/rbinstall.rb b/tool/rbinstall.rb
index 9c3d71300d..2d0c4f320b 100755
--- a/tool/rbinstall.rb
+++ b/tool/rbinstall.rb
@@ -862,7 +862,7 @@ module RbInstall
$made_dirs.fetch(d = without_destdir(dir)) do
$made_dirs[d] = true
super unless $dryrun
- $installed_list.puts(d) if $installed_list
+ $installed_list.puts(d+"/") if $installed_list
end
end
end