13 lines
331 B
Ruby
13 lines
331 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module_function
|
|
|
|
def ee?
|
|
File.exist?(File.expand_path('../../ee/app/models/license.rb', __dir__)) && !%w[true 1].include?(ENV['FOSS_ONLY'].to_s)
|
|
end
|
|
|
|
def jh?
|
|
ee? && Dir.exist?(File.expand_path('../../jh', __dir__)) && !%w[true 1].include?(ENV['EE_ONLY'].to_s)
|
|
end
|
|
end
|