From 864f985d635eed98d6c4b726dc03cdd59b9f0700 Mon Sep 17 00:00:00 2001 From: LinguaFrancaTranslator Date: Mon, 24 Jul 2017 09:42:41 -0700 Subject: [PATCH] Fixed issue with map loading --- Rakefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Rakefile b/Rakefile index 1f3e25d..ecb36e1 100644 --- a/Rakefile +++ b/Rakefile @@ -92,13 +92,13 @@ end namespace :deployment do task pull: :environment do branch = Rails.env.production? ? :master : :development - # `git reset --hard origin/#{branch}` - # raise "\nPull failed" if $?.exitstatus > 0 + `git reset --hard origin/#{branch}` + raise "\nPull failed" if $?.exitstatus > 0 changed = !(`git pull` =~ /Already up to date/) - # raise "\nPull failed" if $?.exitstatus > 0 + raise "\nPull failed" if $?.exitstatus > 0 `bundle install --no-deployment && bundle update bundle install --deployment` - # raise "\nPull failed" if $?.exitstatus > 0 + raise "\nPull failed" if $?.exitstatus > 0 end task update: :environment do @@ -112,7 +112,7 @@ namespace :deployment do ] cmd = tasks.map { |t| "RAILS_ENV=#{Rails.env} bundle exec #{t}"}.join(' && ') `#{cmd}` - # raise "\nUpdate failed" if $?.exitstatus > 0 + raise "\nUpdate failed" if $?.exitstatus > 0 end task bounce: :environment do