From 1d8c40f5d2048ac8d24533ee0151732bf4f9817e Mon Sep 17 00:00:00 2001 From: Nick Hammond Date: Tue, 1 Oct 2024 08:20:21 -0700 Subject: [PATCH] Run RC --- lib/kamal/configuration.rb | 2 +- test/configuration_test.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/kamal/configuration.rb b/lib/kamal/configuration.rb index 1c87e051..59563de9 100644 --- a/lib/kamal/configuration.rb +++ b/lib/kamal/configuration.rb @@ -20,7 +20,7 @@ class Kamal::Configuration class << self def create_from(config_file:, destination: nil, version: nil) - ENV['KAMAL_DESTINATION'] = destination + ENV["KAMAL_DESTINATION"] = destination raw_config = load_config_files(config_file, *destination_config_file(config_file, destination)) diff --git a/test/configuration_test.rb b/test/configuration_test.rb index 96ceb36f..eaeffa22 100644 --- a/test/configuration_test.rb +++ b/test/configuration_test.rb @@ -226,7 +226,7 @@ class ConfigurationTest < ActiveSupport::TestCase dest_config_file = Pathname.new(File.expand_path("fixtures/deploy_for_dest.yml", __dir__)) config = Kamal::Configuration.create_from config_file: dest_config_file, destination: "world" - assert_equal ENV['KAMAL_DESTINATION'], "world" + assert_equal ENV["KAMAL_DESTINATION"], "world" end test "destination yml config merge" do