mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-07-23 00:47:51 +00:00
15 lines
413 B
Ruby
Executable File
15 lines
413 B
Ruby
Executable File
#!/usr/bin/env ruby
|
|
# frozen_string_literal: true
|
|
|
|
$:.unshift File.expand_path("../../lib", __FILE__)
|
|
|
|
# GITLAB_PATH points to the Rails.root, which the tool can use to load
|
|
# the Rails environment when necessary or to help find configuration files
|
|
# when used with GDK
|
|
GITLAB_PATH = File.expand_path('../', __dir__)
|
|
|
|
require_relative '../config/boot'
|
|
require 'gitlab/backup/cli'
|
|
|
|
Gitlab::Backup::Cli.start(ARGV)
|