Skip to content

Commit

Permalink
cli: Fix error message logging in allocation close command
Browse files Browse the repository at this point in the history
  • Loading branch information
fordN committed Sep 14, 2023
1 parent db8381b commit 6916e63
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ module.exports = {
try {
poi = validatePOI(unformattedPoi)
} catch (error) {
spinner.fail(`Invalid POI provided, '${unformattedPoi}'. ` + error.message())
spinner.fail(`Invalid POI provided, '${unformattedPoi}'. ` + error.message)
process.exitCode = 1
return
}
Expand Down

0 comments on commit 6916e63

Please sign in to comment.