summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
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