Skip to content

Commit

Permalink
Merge pull request aragon#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
Daniel Constantin authored and 0xGabi committed Jan 5, 2019
1 parent 8348725 commit f1561ef
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/aragon-cli/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 f1561ef

Please sign in to comment.