diff options
| author | mo khan <mo@mokhan.ca> | 2013-12-28 10:56:05 -0700 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2013-12-28 10:56:05 -0700 |
| commit | 9eaafe5f85eb4310c3d41b41699b5e3e94a22395 (patch) | |
| tree | 7165619baf0e902aadc419bfdc3c190eb84fed8c /lib/tasks | |
| parent | 28521c762735db4917407e8703a3d768f20d8122 (diff) | |
replace http with https.
Diffstat (limited to 'lib/tasks')
| -rw-r--r-- | lib/tasks/deployment.rake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/tasks/deployment.rake b/lib/tasks/deployment.rake index 7e91c748..16edad31 100644 --- a/lib/tasks/deployment.rake +++ b/lib/tasks/deployment.rake @@ -2,13 +2,13 @@ namespace :deploy do desc "deploy to staging server" task :staging do sh "cap staging deploy:migrations" - sh "curl http://staging.cakeside.com/ > /dev/null" + sh "curl https://staging.cakeside.com/ > /dev/null" end desc "deploy to production server" task :production do sh "cap production deploy:migrations" - sh "curl http://www.cakeside.com/ > /dev/null" + sh "curl https://www.cakeside.com/ > /dev/null" end end |
