Skip to content

Commit

Permalink
Merge pull request #284 from aragon/apm-versions-verbose-error
Browse files Browse the repository at this point in the history
Show more info when content cannot be found
  • Loading branch information
kernelwhisperer authored Dec 6, 2018
2 parents 389b08d + 6541736 commit f8ab8c6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/commands/apm_cmds/versions.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,11 @@ exports.handler = async function({
`${version.version}: ${version.contractAddress} ${version.error}`
)
} else {
reporter.error('Version not found in provider')
reporter.error(
`${version.version}: ${
version.contractAddress
} Version not found in provider`
)
}
})
process.exit()
Expand Down

0 comments on commit f8ab8c6

Please sign in to comment.