Merge pull request #60 from jackcasey/master

Tiny change to README to suggest using 'system' over 'exec'
master
Tom Vaughan 2014-03-20 10:23:58 -05:00
commit 08e392fc6b
1 changed files with 1 additions and 1 deletions

View File

@ -137,7 +137,7 @@ end
namespace :deploy do
def deploy(env)
puts "Deploying to #{env}"
exec "TARGET=#{env} bundle exec middleman deploy"
system "TARGET=#{env} bundle exec middleman deploy"
end
task :staging do