Merge pull request #60 from jackcasey/master

Tiny change to README to suggest using 'system' over 'exec'
This commit is contained in:
Tom Vaughan 2014-03-20 10:23:58 -05:00
commit 08e392fc6b

View file

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