Log errors in check model (#6235)

This commit is contained in:
Denis Bykhov 2024-08-02 19:36:51 +05:00 committed by GitHub
parent 1c965209a7
commit 74d76d34a4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,12 +2,14 @@ const exec = require('child_process').exec
exec('git describe --tags `git rev-list --tags --max-count=1`', (err, stdout, stderr) => {
if (err !== null) {
console.log('Error', err)
process.exit(1)
}
const tag = stdout.trim()
console.log('Check changes for tag:', tag)
exec(`git fetch --tags && git diff ${tag} --name-only`, (err, stdout, stderr) => {
if (err !== null) {
console.log('Error', err)
process.exit(1)
}
const changedFiles = stdout.trim().split('\n')