Skip to content

Commit

Permalink
Merge branch 'master' into fix-list-extensions-tree
Browse files Browse the repository at this point in the history
  • Loading branch information
lagartoflojo committed Mar 2, 2018
2 parents e6d4977 + 78a78f7 commit 97075a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/tasks/package.rake
Expand Up @@ -22,11 +22,11 @@ namespace :package do

desc 'Check local checkout for uncommitted changes'
task :check_git do
modified = `git ls-files -m --exclude-standard .`
modified = `git ls-files -m -o --exclude-standard .`
if modified.empty?
puts 'No uncommitted changes detected.'
else
raise "Warning: uncommitted changes!\n\n#{modified}\n"
raise "Warning: uncommitted or untracked changes!\n\n#{modified}\n"
end
end

Expand Down

0 comments on commit 97075a1

Please sign in to comment.