Skip to content
This repository has been archived by the owner on Jul 22, 2020. It is now read-only.

Commit

Permalink
Adding quiet flag to fetch check
Browse files Browse the repository at this point in the history
  • Loading branch information
Ian Walter committed Sep 16, 2019
1 parent 59f1133 commit b4f9746
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit b4f9746

Please sign in to comment.