From 689f86aa52bda9dad3b7af982a8772331d185a4f Mon Sep 17 00:00:00 2001
From: Michael Kriese <michael.kriese@visualon.de>
Date: Fri, 19 Jul 2019 08:23:16 +0200
Subject: [PATCH] fix grep

---
 test/json-schema.ts | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/test/json-schema.ts b/test/json-schema.ts
index 98ab68ae0f..c9ae08ac17 100644
--- a/test/json-schema.ts
+++ b/test/json-schema.ts
@@ -2,9 +2,7 @@ import shell from 'shelljs';
 
 shell.exec('yarn create-json-schema');
 
-const res = shell
-  .exec('git status --porcelain', { silent: true })
-  .grep('renovate-schema.json');
+const res = shell.exec('git status --porcelain', { silent: true });
 
 if (res.code === 0 && !res.includes('renovate-schema.json')) {
   shell.echo('PASS: renovate-schema.json is up to date');
-- 
GitLab