Ignore Gemfile.lock in the release task

This commit is contained in:
Rafael Mendonça França 2015-11-12 15:00:05 -02:00
parent 921ce291d4
commit 1576f47c23
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@ namespace :all do
task :push => FRAMEWORKS.map { |f| "#{f}:push" } + ['rails:push']
task :ensure_clean_state do
unless `git status -s | grep -v 'RAILS_VERSION\\|CHANGELOG'`.strip.empty?
unless `git status -s | grep -v 'RAILS_VERSION\\|CHANGELOG\\|Gemfile.lock'`.strip.empty?
abort "[ABORTING] `git status` reports a dirty tree. Make sure all changes are committed"
end