26 lines
517 B
Ruby
26 lines
517 B
Ruby
module Gitlab
|
|
module ImportExport
|
|
class VersionSaver
|
|
include Gitlab::ImportExport::CommandLineUtil
|
|
|
|
def initialize(shared:)
|
|
@shared = shared
|
|
end
|
|
|
|
def save
|
|
mkdir_p(@shared.export_path)
|
|
|
|
File.write(version_file, Gitlab::ImportExport.version, mode: 'w')
|
|
rescue => e
|
|
@shared.error(e)
|
|
false
|
|
end
|
|
|
|
private
|
|
|
|
def version_file
|
|
File.join(@shared.export_path, Gitlab::ImportExport.version_filename)
|
|
end
|
|
end
|
|
end
|
|
end
|