Skip to content

Commit 5b51578

Browse files
authored
[PDE-5660] fix(cli): Pass in rawError=true when catching error response in env:unset (#954)
1 parent 575fef5 commit 5b51578

File tree

1 file changed

+1
-1
lines changed
  • packages/cli/src/oclif/commands/env

1 file changed

+1
-1
lines changed

packages/cli/src/oclif/commands/env/unset.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ class UnsetEnvCommand extends BaseCommand {
5454
}
5555

5656
try {
57-
await callAPI(url, requestOptions);
57+
await callAPI(url, requestOptions, true);
5858
} catch (e) {
5959
if (e.status === 409) {
6060
this.error(

0 commit comments

Comments
 (0)