From 8d2ef13ecc4fd0426870bf3ab35770b4782063cf Mon Sep 17 00:00:00 2001 From: Daniel Azuma Date: Tue, 27 Oct 2020 19:35:26 +0000 Subject: [PATCH] fix: Fix incorrect variable name in gem publish script --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index c71b461f0..7b29c1d48 100644 --- a/Rakefile +++ b/Rakefile @@ -98,7 +98,7 @@ namespace :kokoro do Rake::Task["build"].invoke built_gem_path = Dir.glob("pkg/google-api-client-*.gem").last - response = ::Gems.push File.new path_to_be_pushed + response = ::Gems.push File.new built_gem_path puts response raise "Failed to release gem" unless response.include? "Successfully registered gem:" end