summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Vosmaer <jacob@gitlab.com>2017-12-05 16:08:27 +0100
committerJacob Vosmaer <jacob@gitlab.com>2017-12-05 16:08:27 +0100
commit2f61e57db0d7dee731cc4c373903c1a695a6cd06 (patch)
tree6dca261776bedaacdd1ec66a90481791423a6de3
parentc27e7dfd5c4e62e3d57293cef25c29892d1e1f20 (diff)
downloadgitlab-shell-fork-no-local.tar.gz
remove debug statementfork-no-local
-rw-r--r--lib/gitlab_projects.rb2
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)