summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormo khan <mo.khan@gmail.com>2020-03-31 17:10:19 -0600
committermo khan <mo.khan@gmail.com>2020-04-01 10:05:57 -0600
commitb7ba92d3fb70b3d029c4d7b34ed1178a5809762b (patch)
tree61cec1dade00309cbd3b1afe2459ddee3f87a2e7
parentf6ee3a1390802502510f511d7c290bd6450ddbf2 (diff)
Silence git clone output
-rw-r--r--spec/support/integration_test_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/support/integration_test_helper.rb b/spec/support/integration_test_helper.rb
index de04db3..c4c0d88 100644
--- a/spec/support/integration_test_helper.rb
+++ b/spec/support/integration_test_helper.rb
@@ -18,7 +18,7 @@ module IntegrationTestHelper
end
def clone(repo, branch: 'master')
- execute({}, "git", "clone", repo, project_path)
+ execute({}, "git", "clone", '--quiet', repo, project_path)
Dir.chdir project_path do
execute({}, "git", "checkout", branch)
end