Skip to content

Commit

Permalink
Refs #3 - Change env To ENV.
Browse files Browse the repository at this point in the history
  • Loading branch information
zac23or committed Oct 31, 2016
1 parent ee7d6fc commit 136be3e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/tasks/integrate.rake
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ task promote_staging_to_production: [
]

namespace :integration do
BRANCH_DEVELOPMENT = env['INTEGRATE_BRANCH_DEVELOPMENT'] || 'master'
BRANCH_STAGING = env['INTEGRATE_BRANCH_STAGING'] || 'staging'
BRANCH_PRODUCTION = env['INTEGRATE_BRANCH_PRODUCTION'] || 'production'
BRANCH_DEVELOPMENT = ENV['INTEGRATE_BRANCH_DEVELOPMENT'] || 'master'
BRANCH_STAGING = ENV['INTEGRATE_BRANCH_STAGING'] || 'staging'
BRANCH_PRODUCTION = ENV['INTEGRATE_BRANCH_PRODUCTION'] || 'production'

task :set_production_as_deploy_env do
ENV['APP_ENV'] ||= 'production'
Expand Down

0 comments on commit 136be3e

Please sign in to comment.