2018-05-21 06:56:56 -04:00
|
|
|
#!/usr/bin/env ruby
|
2018-05-21 11:12:18 -04:00
|
|
|
ee_path = File.join(File.expand_path(__dir__), '../ee')
|
2018-05-21 06:56:56 -04:00
|
|
|
|
2018-05-21 11:12:18 -04:00
|
|
|
if Dir.exist?(ee_path)
|
2018-05-21 06:56:56 -04:00
|
|
|
puts 'The repository contains /ee directory. There should be no /ee directory in CE repo.'
|
|
|
|
exit 1
|
|
|
|
end
|