Skip to content

Commit

Permalink
fix: Env now respects user set env vars
Browse files Browse the repository at this point in the history
  • Loading branch information
KonnorRogers committed Jul 26, 2020
1 parent 35d4433 commit 588b41f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/snowpacker/env.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def set_env_variables
private

def set_env(env_var, value)
ENV["#{ENV_PREFIX}_#{env_var}"] = value.to_s
ENV["#{ENV_PREFIX}_#{env_var}"] ||= value.to_s
end
end
end
Expand Down

0 comments on commit 588b41f

Please sign in to comment.