fix permissions
This commit is contained in:
parent
a2bf164154
commit
44be867d21
1 changed files with 2 additions and 1 deletions
|
@ -2,6 +2,7 @@ module Gitlab
|
||||||
module ImportExport
|
module ImportExport
|
||||||
module AfterExportStrategies
|
module AfterExportStrategies
|
||||||
class BaseAfterExportStrategy
|
class BaseAfterExportStrategy
|
||||||
|
extend Gitlab::ImportExport::CommandLineUtil
|
||||||
include ActiveModel::Validations
|
include ActiveModel::Validations
|
||||||
extend Forwardable
|
extend Forwardable
|
||||||
|
|
||||||
|
@ -56,7 +57,7 @@ module Gitlab
|
||||||
|
|
||||||
lock_path = project.import_export_shared.archive_path
|
lock_path = project.import_export_shared.archive_path
|
||||||
|
|
||||||
FileUtils.mkdir_p(lock_path)
|
mkdir_p(lock_path)
|
||||||
File.join(lock_path, AFTER_EXPORT_LOCK_FILE_NAME)
|
File.join(lock_path, AFTER_EXPORT_LOCK_FILE_NAME)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue