diff options
author | Angus MacArthur <amacarthur@blackberry.com> | 2013-04-16 00:24:11 -0400 |
---|---|---|
committer | Angus MacArthur <amacarthur@blackberry.com> | 2013-04-16 00:24:11 -0400 |
commit | e104bdf13f66319b450243c6dcb1d199e554b431 (patch) | |
tree | 0b3b957341dff6aa7eea7eea0a16acfeff47f881 /lib/gitlab_projects.rb | |
parent | a471d5526249654f93dae8d88b92c2cddb287178 (diff) | |
download | gitlab-shell-e104bdf13f66319b450243c6dcb1d199e554b431.tar.gz |
fork fixes for upstream pull
Change-Id: Ia48a93ccbfea6fdc0791ce25cf3e6291bfe7fa08
Diffstat (limited to 'lib/gitlab_projects.rb')
-rw-r--r-- | lib/gitlab_projects.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gitlab_projects.rb b/lib/gitlab_projects.rb index 3115868..d726f32 100644 --- a/lib/gitlab_projects.rb +++ b/lib/gitlab_projects.rb @@ -94,7 +94,7 @@ class GitlabProjects namespaced_path = File.join(repos_path, new_namespace) return false unless File.exists?(namespaced_path) - cmd = "cd #{namespaced_path} && git clone --bare #{@full_path}" + cmd = "cd #{namespaced_path} && git clone --bare #{full_path}" system(cmd) end end |