summaryrefslogtreecommitdiffstats
path: root/lib
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
commitcbdc87c1712d671d7b421c83475954cfc9e19ebf (patch)
treec15b31f9022f80524b70c1b901e92a067643001d /lib
parent657989ea6ef1a48e18079b0b779e41eb06e014a9 (diff)
downloadruby-cbdc87c1712d671d7b421c83475954cfc9e19ebf.tar.gz
ruby-cbdc87c1712d671d7b421c83475954cfc9e19ebf.tar.xz
ruby-cbdc87c1712d671d7b421c83475954cfc9e19ebf.zip
merge a cosmetic change
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8_6@11989 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r--lib/fileutils.rb6
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/fileutils.rb b/lib/fileutils.rb
index cf0c91b0a..3fdb6cbfe 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|