Skip to content

Commit

Permalink
Run RC
Browse files Browse the repository at this point in the history
  • Loading branch information
nickhammond committed Oct 1, 2024
1 parent 73c7807 commit 1d8c40f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/kamal/configuration.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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))

Expand Down
2 changes: 1 addition & 1 deletion test/configuration_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 1d8c40f

Please sign in to comment.