Skip to content

Commit

Permalink
Refs #3 - Change string quote
Browse files Browse the repository at this point in the history
  - Double quote process  variable, single not
  • Loading branch information
zac23or committed Nov 1, 2016
1 parent a8cc8f0 commit 164fd35
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/tasks/integrate.rake
Original file line number Diff line number Diff line change
Expand Up @@ -156,17 +156,17 @@ namespace :integration do

task :promote_development_to_staging do
sh "git checkout #{BRANCH_STAGING}"
sh 'git pull --rebase'
sh "git pull --rebase"
sh "git rebase #{BRANCH_DEVELOPMENT}"
sh 'git push origin #{BRANCH_STAGING}'
sh "git push origin #{BRANCH_STAGING}"
sh "git checkout #{BRANCH_DEVELOPMENT}"
end

task :promote_staging_to_production do
sh "git checkout #{BRANCH_PRODUCTION}"
sh 'git pull --rebase'
sh "git pull --rebase"
sh "git rebase #{BRANCH_STAGING}"
sh 'git push origin #{BRANCH_PRODUCTION}'
sh "git push origin #{BRANCH_PRODUCTION}"
sh "git checkout #{BRANCH_DEVELOPMENT}"
end
end
Expand Down

0 comments on commit 164fd35

Please sign in to comment.