Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/gruntworker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Rebert <code@rebertia.com>2014-12-03 11:13:04 +0300
committerChris Rebert <code@rebertia.com>2014-12-03 11:13:04 +0300
commit6ca5f04fdc2ca61984de8d05cb012e08afc0b63e (patch)
treed6c17eebe1d1ef001f910551efdb38c609d01128
parent9386f55178e88b63906325e923868617f511385a (diff)
quiet checkouts
-rwxr-xr-xgruntworker.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/gruntworker.py b/gruntworker.py
index 297710c..97bf49a 100755
--- a/gruntworker.py
+++ b/gruntworker.py
@@ -46,9 +46,9 @@ def fetch_origin():
def update_master(to_commitish=b'FETCH_HEAD'):
log("Setting local master to {0}...".format(to_commitish.decode('utf8', 'replace')))
try:
- run_expecting_success([b'git', b'checkout', b'-f', to_commitish])
+ run_expecting_success([b'git', b'checkout', b'-q', b'-f', to_commitish])
run_expecting_success([b'git', b'branch', b'-f', b'master', to_commitish])
- run_expecting_success([b'git', b'checkout', b'-f', b'master'])
+ run_expecting_success([b'git', b'checkout', b'-q', b'-f', b'master'])
except CalledProcessError:
log("Error setting local master to {0}!".format(to_commitish))
reset_to_master_and_die()