From d6f18b226ef51e71bea72eb888fa42bd0f74bc57 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Tue, 20 Aug 2024 20:16:45 +0900 Subject: [PATCH] Remove extraneous lock files See https://github.com/rubygems/rubygems/pull/7939 --- tool/rbinstall.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tool/rbinstall.rb b/tool/rbinstall.rb index db01e0b79d..0253673b65 100755 --- a/tool/rbinstall.rb +++ b/tool/rbinstall.rb @@ -746,7 +746,9 @@ module RbInstall name = formatted_program_filename(filename) unless $dryrun super - File.chmod($script_mode, File.join(bindir, name)) + script = File.join(bindir, name) + File.chmod($script_mode, script) + File.unlink("#{script}.lock") rescue nil end $installed_list.puts(File.join(without_destdir(bindir), name)) if $installed_list end