Skip to content

Commit

Permalink
✨ improve verbose
Browse files Browse the repository at this point in the history
  • Loading branch information
GantMan committed Aug 17, 2018
1 parent 31eb84c commit 6191d04
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/extensions/functions/checkRequirement.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,8 @@ module.exports = async (
// Handle CLI rule check
case 'cli':
const cliResult = await checkCLI(rule, context)
ruleString = `${requirementName} - ${rule.binary} binary`
const semverRequirement = rule.semver || ''
ruleString = `${requirementName} - ${rule.binary} binary ${semverRequirement}`
if (cliResult) {
return addFailure(cliResult)
} else {
Expand Down

0 comments on commit 6191d04

Please sign in to comment.