aboutsummaryrefslogtreecommitdiffstats
path: root/lib/tempfile.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/tempfile.rb')
-rw-r--r--lib/tempfile.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tempfile.rb b/lib/tempfile.rb
index e2bb9d1f0b..63d4f8c330 100644
--- a/lib/tempfile.rb
+++ b/lib/tempfile.rb
@@ -251,7 +251,7 @@ class Tempfile < DelegateClass(File)
warn "removing #{@tmpfile.path}..." if $DEBUG
- @tmpfile.close if @tmpfile.closed?
+ @tmpfile.close unless @tmpfile.closed?
begin
File.unlink(@tmpfile.path)
rescue Errno::ENOENT