From 6cef831e700fbc2a8f07b90422d2beb54d3ffa3d Mon Sep 17 00:00:00 2001 From: Sam Stauffacher Date: Mon, 29 Sep 2025 12:26:30 -0500 Subject: [PATCH] plugins.ts - absence of case = "remove" (#7141) --- bin/plugins.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bin/plugins.ts b/bin/plugins.ts index 9b0b49633..9acd2af53 100644 --- a/bin/plugins.ts +++ b/bin/plugins.ts @@ -109,6 +109,9 @@ switch (action) { case "rm": remove(args.slice(1)); break; + case "remove": + remove(args.slice(1)); + break; default: console.error('Expected at least one argument!'); process.exit(1);