summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authormo khan <mo.khan@gmail.com>2020-09-16 16:55:02 -0600
committermo khan <mo.khan@gmail.com>2020-09-16 16:55:02 -0600
commit5ee9702d444039efe088a524d0213f7c29a0dff1 (patch)
tree0e1fe23452b2daf05ad9ce9fd53917dbad740634 /lib
parent2bece2065c170e6ef056d04b7797b26dc208006e (diff)
chore: print git clone output
Diffstat (limited to 'lib')
-rw-r--r--lib/e2e/project.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/e2e/project.rb b/lib/e2e/project.rb
index 74ad1e4..10c68eb 100644
--- a/lib/e2e/project.rb
+++ b/lib/e2e/project.rb
@@ -30,12 +30,12 @@ class Project
def clone(repo, branch: 'master')
if branch.match?(/\b[0-9a-f]{5,40}\b/)
- execute({}, 'git', 'clone', '--quiet', repo, path.to_s)
+ execute({}, 'git', 'clone', repo, path.to_s)
chdir do
execute({}, 'git', 'checkout', branch)
end
else
- execute({}, 'git', 'clone', '--quiet', '--depth=1', '--single-branch', '--branch', branch, repo, path.to_s)
+ execute({}, 'git', 'clone', '--depth=1', '--single-branch', '--branch', branch, repo, path.to_s)
end
end