Skip to content

Commit 7ff45bc

Browse files
committed
Remove unnecessary string interpolation
1 parent 1475e12 commit 7ff45bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/fastlane/plugin/firebase_app_distribution/actions/firebase_app_distribution_action.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ def self.upload_binary(app_name, binary_path, binary_type, client, timeout)
292292
rescue Google::Apis::Error => err
293293
case err.status_code.to_i
294294
when 403
295-
UI.crash!("#{ErrorMessage::PERMISSION_DENIED_ERROR}")
295+
UI.crash!(ErrorMessage::PERMISSION_DENIED_ERROR)
296296
else
297297
UI.crash!("#{ErrorMessage.upload_binary_error(binary_type)} (#{err}, status_code: #{err.status_code})")
298298
end

0 commit comments

Comments
 (0)