summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-03-04 15:03:11 +0000
committerknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-03-04 15:03:11 +0000
commit8bba0461fc08cda7ffbac724916e94d654027403 (patch)
treec15b31f9022f80524b70c1b901e92a067643001d
parent2d531c82ebe46092fcaab2c4ccc0bdc0f9d52523 (diff)
merge a cosmetic change
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8_6@11989 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--lib/fileutils.rb6
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/fileutils.rb b/lib/fileutils.rb
index cf0c91b0a0..3fdb6cbfe6 100644
--- a/lib/fileutils.rb
+++ b/lib/fileutils.rb
@@ -1020,11 +1020,7 @@ module FileUtils
created = nocreate = options[:nocreate]
t = options[:mtime]
if options[:verbose]
- fu_output_message "touch #{
- nocreate ? ' -c' : ''
- }#{
- t ? t.strftime(' -t %Y%m%d%H%M.%S') : ''
- }#{list.join ' '}"
+ fu_output_message "touch #{nocreate ? ' -c' : ''}#{t ? t.strftime(' -t %Y%m%d%H%M.%S') : ''}#{list.join ' '}"
end
return if options[:noop]
list.each do |path|