mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-07-25 16:03:48 +00:00
8 lines
206 B
Ruby
Executable File
8 lines
206 B
Ruby
Executable File
#!/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
|