Just doing what rubocop tells me.
For one, since I'm there, I used `then` to not fetch twice.
I could have translated more directly, but I figured I'd do this while
I'm here.
@@ -10,7 +10,7 @@ require "redis"
redis = Redis.new
-customer_id = ENV["DEFAULT_CUSTOMER_ID"]
+customer_id = ENV.fetch("DEFAULT_CUSTOMER_ID", nil)
unless customer_id
puts "The env-var DEFAULT_CUSTOMER_ID must be set to the ID " \
"of the customer who will receive the duplicated addrs, preferably " \