Skip to content

Commit

Permalink
deploy always returns unhandled error
Browse files Browse the repository at this point in the history
  • Loading branch information
tbeseda committed May 21, 2024
1 parent e77c097 commit dcd5140
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/deploy/action.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ module.exports = async function action (params, utils) {
catch (err) {
if (err.message === 'app_not_found') return Error(`No app found with app ID '${appID}'`)
if (err.message === 'unknown_error') return Error(`No app found with app ID '${appID}' or the user does not have permission to access the app.`)
return
return err
}
}

Expand Down

0 comments on commit dcd5140

Please sign in to comment.