ruby-changes:74245
From: Nobuyoshi <ko1@a...>
Date: Tue, 25 Oct 2022 16:16:51 +0900 (JST)
Subject: [ruby-changes:74245] 883d9c305f (master): [ruby/tmpdir] Found or raise
https://git.ruby-lang.org/ruby.git/commit/?id=883d9c305f From 883d9c305f82b23fbe0ed28e9d74461cc5e13b97 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada <nobu@r...> Date: Tue, 25 Oct 2022 16:07:09 +0900 Subject: [ruby/tmpdir] Found or raise --- lib/tmpdir.rb | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/lib/tmpdir.rb b/lib/tmpdir.rb index 3e76a8f5c3..95d4ca3fce 100644 --- a/lib/tmpdir.rb +++ b/lib/tmpdir.rb @@ -19,7 +19,7 @@ class Dir https://github.com/ruby/ruby/blob/trunk/lib/tmpdir.rb#L19 # Returns the operating system's temporary file path. def self.tmpdir - tmp = ['TMPDIR', 'TMP', 'TEMP', ['system temporary path', @@systmpdir], ['/tmp']*2, ['.']*2].find do |name, dir = ENV[name]| + ['TMPDIR', 'TMP', 'TEMP', ['system temporary path', @@systmpdir], ['/tmp']*2, ['.']*2].find do |name, dir = ENV[name]| next if !dir dir = File.expand_path(dir) stat = File.stat(dir) rescue next @@ -33,9 +33,7 @@ class Dir https://github.com/ruby/ruby/blob/trunk/lib/tmpdir.rb#L33 else break dir end - end - raise ArgumentError, "could not find a temporary directory" unless tmp - tmp + end or raise ArgumentError, "could not find a temporary directory" end # Dir.mktmpdir creates a temporary directory. -- cgit v1.2.3 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/