diff --git a/test/json-schema.ts b/test/json-schema.ts index 98ab68ae0f81d3ae0e5ae542616d4103da299151..c9ae08ac1776c19220b81e341bf13bb159cb6495 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');