Fix extensions disable/enable commands not awaiting handler (#12915)

This commit is contained in:
N. Taylor Mullen
2025-11-11 20:31:46 -08:00
committed by GitHub
parent a88e7dc412
commit e869c45400
2 changed files with 6 additions and 6 deletions
@@ -76,8 +76,8 @@ export const disableCommand: CommandModule = {
}
return true;
}),
handler: (argv) => {
handleDisable({
handler: async (argv) => {
await handleDisable({
name: argv['name'] as string,
scope: argv['scope'] as string,
});