You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Remove calls to Deno.exit(...); in base-comand.ts (and any other common utility files) and instead raise exceptions. Deno.exit should only be used at the surface level - i.e. within the command functions themselves, and not within utilities or other internals.
The text was updated successfully, but these errors were encountered:
Describe the solution you'd like
Remove calls to
Deno.exit(...);
inbase-comand.ts
(and any other common utility files) and instead raise exceptions.Deno.exit
should only be used at the surface level - i.e. within the command functions themselves, and not within utilities or other internals.The text was updated successfully, but these errors were encountered: