summaryrefslogtreecommitdiff
path: root/scripts/no-ee-check
blob: 29d319dc8224843fdc5927c249ada7ec84016a56 (plain)
1
2
3
4
5
6
7
#!/usr/bin/env ruby
ee_path = File.join(File.expand_path(__dir__), '../ee')

if Dir.exist?(ee_path)
  puts 'The repository contains /ee directory. There should be no /ee directory in CE repo.'
  exit 1
end