mirror of
https://github.com/hcengineering/platform.git
synced 2024-12-20 18:02:01 +03:00
52df4cc869
Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com>
20 lines
688 B
JavaScript
Executable File
20 lines
688 B
JavaScript
Executable File
const exec = require('child_process').exec
|
|
|
|
exec('git describe --tags `git rev-list --tags --max-count=1`', (err, stdout, stderr) => {
|
|
if (err !== null) {
|
|
process.exit(1)
|
|
}
|
|
const tag = stdout.trim()
|
|
exec(`git fetch --tags && git diff ${tag} --name-only`, (err, stdout, stderr) => {
|
|
if (err !== null) {
|
|
process.exit(1)
|
|
}
|
|
const changedFiles = stdout.trim().split('\n')
|
|
const modelsChanged = changedFiles.some(file => file.startsWith('models/'))
|
|
const versionChanged = changedFiles.some(file => file.endsWith('version.txt'))
|
|
if (modelsChanged && !versionChanged) {
|
|
console.log('Please update model version')
|
|
process.exit(1)
|
|
}
|
|
})
|
|
}) |