summaryrefslogtreecommitdiff
path: root/spec/support/project_helper.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/support/project_helper.rb')
-rw-r--r--spec/support/project_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/support/project_helper.rb b/spec/support/project_helper.rb
index f64df98..f80a23a 100644
--- a/spec/support/project_helper.rb
+++ b/spec/support/project_helper.rb
@@ -28,7 +28,7 @@ class ProjectHelper
if branch.match?(/\b[0-9a-f]{5,40}\b/)
execute({}, 'git', 'clone', '--quiet', repo, project_path.to_s)
chdir do
- execute({}, 'git', 'checkout', branch)
+ execute({}, 'git', 'checkout', '--quiet', branch)
end
else
execute({}, 'git', 'clone', '--quiet', '--depth=1', '--single-branch', '--branch', branch, repo, project_path.to_s)