diff options
author | Jacob Vosmaer <jacob@gitlab.com> | 2017-12-05 16:08:27 +0100 |
---|---|---|
committer | Jacob Vosmaer <jacob@gitlab.com> | 2017-12-05 16:08:27 +0100 |
commit | 2f61e57db0d7dee731cc4c373903c1a695a6cd06 (patch) | |
tree | 6dca261776bedaacdd1ec66a90481791423a6de3 /lib | |
parent | c27e7dfd5c4e62e3d57293cef25c29892d1e1f20 (diff) | |
download | gitlab-shell-fork-no-local.tar.gz |
remove debug statementfork-no-local
Diffstat (limited to 'lib')
-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 b616fd0..6700735 100644 --- a/lib/gitlab_projects.rb +++ b/lib/gitlab_projects.rb @@ -257,7 +257,7 @@ class GitlabProjects # timeout for clone timeout = (ARGV.shift || 120).to_i $logger.info "Importing project #{@project_name} from <#{masked_source}> to <#{full_path}>." - cmd = p %W(git clone --bare -- #{@source} #{full_path}) + cmd = %W(git clone --bare -- #{@source} #{full_path}) pid = Process.spawn(*cmd) |