blob: d2fa95dcaddc4ad86035a8f0a46688fdc8e3dc93 (
plain)
1
2
3
4
5
6
7
|
if ENV['SHELL_ROOT_PATH'].nil? || ENV['SHELL_ROOT_PATH'].empty?
ROOT_PATH = File.expand_path(File.join(File.dirname(__FILE__), ".."))
else
ROOT_PATH = ENV['SHELL_ROOT_PATH']
end
require_relative 'gitlab_config'
|