Commit 56831d27c6d4894986b6f9325cba77bfb5da8cb2

Authored by Antonio Terceiro
1 parent f2439d1b

ci: ignore stuff under vendor/ for now

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
lib/tasks/ci.rake
... ... @@ -7,7 +7,7 @@ namespace :ci do
7 7 from = ENV['PREV_HEAD'] || "origin/#{current_branch}"
8 8 to = ENV['HEAD'] || current_branch
9 9 changed_files = `git diff --name-only #{from}..#{to}`.split.select do |f|
10   - File.exist?(f)
  10 + File.exist?(f) && f.split(File::SEPARATOR).first != 'vendor'
11 11 end
12 12  
13 13 changed_plugin_files = changed_files.select do |f|
... ...