Correct validation error message

This commit is contained in:
khai96_ 2020-05-09 19:52:48 +07:00
parent 7a5d08caa7
commit 91d3d73121
2 changed files with 1 additions and 1 deletions

BIN
dist/index.js vendored

Binary file not shown.

View File

@ -40,7 +40,7 @@ function parseRunInstall(name: string): RunInstall[] {
const validate = ajv.compile(runInstallSchema)
if (!validate(result)) {
for (const errorItem of validate.errors!) {
error(`${errorItem.dataPath}: ${errorItem.message}`)
error(`with.run_install${errorItem.dataPath}: ${errorItem.message}`)
}
return process.exit(1)
}