summaryrefslogtreecommitdiff
path: root/lib/gitlab_projects.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab_projects.rb')
-rw-r--r--lib/gitlab_projects.rb9
1 files changed, 8 insertions, 1 deletions
diff --git a/lib/gitlab_projects.rb b/lib/gitlab_projects.rb
index ad3d3b8..4e6f271 100644
--- a/lib/gitlab_projects.rb
+++ b/lib/gitlab_projects.rb
@@ -286,6 +286,13 @@ class GitlabProjects
end
def fork_project
+ destination_repos_path = ARGV.shift
+
+ unless destination_repos_path
+ $logger.error "fork-project failed: no destination repository path provided."
+ return false
+ end
+
new_namespace = ARGV.shift
# destination namespace must be provided
@@ -295,7 +302,7 @@ class GitlabProjects
end
# destination namespace must exist
- namespaced_path = File.join(repos_path, new_namespace)
+ namespaced_path = File.join(destination_repos_path, new_namespace)
unless File.exists?(namespaced_path)
$logger.error "fork-project failed: destination namespace <#{namespaced_path}> does not exist."
return false