aboutsummaryrefslogtreecommitdiffstats
path: root/lib/tmpdir.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/tmpdir.rb')
-rw-r--r--lib/tmpdir.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/tmpdir.rb b/lib/tmpdir.rb
index f043ad5006..d7f68272e8 100644
--- a/lib/tmpdir.rb
+++ b/lib/tmpdir.rb
@@ -23,10 +23,10 @@ class Dir
tmp = @@systmpdir
else
for dir in [ENV['TMPDIR'], ENV['TMP'], ENV['TEMP'], @@systmpdir, '/tmp']
- if dir and stat = File.stat(dir) and stat.directory? and stat.writable?
- tmp = dir
- break
- end rescue nil
+ if dir and stat = File.stat(dir) and stat.directory? and stat.writable?
+ tmp = dir
+ break
+ end rescue nil
end
File.expand_path(tmp)
end