Don't exit when "sh" fails
When 'rake watch:deploy:local' is being used, do not exit when compilation fails but instead wait for a fix to be applied, and then re-compile the site.
This commit is contained in:
parent
728b10e524
commit
7a27036425
1 changed files with 2 additions and 2 deletions
|
@ -30,7 +30,7 @@ end
|
|||
namespace :watch do
|
||||
desc "Watch for changes (server task)"
|
||||
task :server do
|
||||
Bundler.with_unbundled_env { sh "rake build" }
|
||||
Bundler.with_unbundled_env { Process.wait spawn("rake build") }
|
||||
Listen.to(File.join(Dir.getwd, "src")) do
|
||||
Bundler.with_unbundled_env { sh "rake build" }
|
||||
end.start
|
||||
|
@ -40,7 +40,7 @@ namespace :watch do
|
|||
namespace :deploy do
|
||||
desc "Watch for changes (deploy:local task)"
|
||||
task :local do
|
||||
Bundler.with_unbundled_env { sh "rake deploy:local" }
|
||||
Bundler.with_unbundled_env { Process.wait spawn("rake deploy:local") }
|
||||
Listen.to(File.join(Dir.getwd, "src")) do
|
||||
Bundler.with_unbundled_env { sh "rake deploy:local" }
|
||||
end.start
|
||||
|
|
Loading…
Reference in a new issue