From b4f9746901d2b124aa4fbeaecb6420253b4dc701 Mon Sep 17 00:00:00 2001 From: Ian Walter Date: Mon, 16 Sep 2019 15:42:26 -0400 Subject: [PATCH] Adding quiet flag to fetch check --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 4424ac8..2d6777a 100644 --- a/index.js +++ b/index.js @@ -34,7 +34,7 @@ const precheck = async (config) => { // Check if there are changes that need to be pulled from the remote (that // aren't known about locally). - const fetchOptions = ['fetch', 'origin', 'master', '--dry-run'] + const fetchOptions = ['fetch', 'origin', 'master', '--dry-run', '-q'] const { stderr: fetchResult } = await execa('git', fetchOptions) if (fetchResult !== '') { print.debug('Remote fetch check:\n', fetchResult)