Skip to content

Commit

Permalink
Merge pull request #517 from salesforcecli/re/return-errors
Browse files Browse the repository at this point in the history
fix: always throw errors caught from creating sandboxes
  • Loading branch information
WillieRuemmele authored Dec 9, 2022
2 parents 6a84204 + 67f3dfc commit 76e1b19
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/commands/force/org/create.ts
Original file line number Diff line number Diff line change
Expand Up @@ -237,8 +237,9 @@ export class Create extends SfdxCommand {
}
err.actions = [messages.getMessage('dnsTimeout'), messages.getMessage('partialSuccess')];
err.exitCode = 68;
throw err;
}

throw err;
}
}

Expand Down

0 comments on commit 76e1b19

Please sign in to comment.