summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authoreban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2001-05-07 06:51:37 +0000
committereban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2001-05-07 06:51:37 +0000
commit1a4f8093f01c399da2adca3e0bba7ec1aea58b9b (patch)
tree0c618acf54cf960cb4cbcae0e911d4aeeeebe7fb /lib
parentbfc20f8ca3c50ff82a7cabdc23221d2c15470004 (diff)
* lib/ftools.rb (syscopy): chmod destination file only if
it does not exist. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1366 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r--lib/ftools.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/ftools.rb b/lib/ftools.rb
index 369a6177d2..5e6203b1a3 100644
--- a/lib/ftools.rb
+++ b/lib/ftools.rb
@@ -26,6 +26,7 @@ class << File
fmode = stat(from).mode
tpath = to
+ not_exist = !exist?(tpath)
from = open(from, "r")
from.binmode
@@ -50,7 +51,7 @@ class << File
to.close
from.close
end
- chmod(fmode, tpath)
+ chmod(fmode, tpath) if not_exist
ret
end