Fix a variable name in error message (#190)

This commit is contained in:
Toru Tanaka 2016-05-03 15:24:32 +09:00 committed by Andrew Janke
parent a98eb34073
commit 967988c444

View File

@ -68,7 +68,7 @@ module FileUtils
# group_id.to_s makes OS X 10.6.7 (ruby-1.8.7-p174) and earlier happy.
chown(nil, group_id.to_s, tmpdir)
rescue Errno::EPERM
opoo "Failed setting group \"#{Etc.getgrgid(group_id).name}\" on #{tmp}"
opoo "Failed setting group \"#{Etc.getgrgid(group_id).name}\" on #{tmpdir}"
end
begin