From 87f5910d1170955239215fafe67c96b7dbe86725 Mon Sep 17 00:00:00 2001 From: Eric Amodio Date: Mon, 7 Feb 2022 01:57:15 -0500 Subject: [PATCH] Fixes command execute issue --- src/system/command.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/system/command.ts b/src/system/command.ts index 3e093ee..7749601 100644 --- a/src/system/command.ts +++ b/src/system/command.ts @@ -41,7 +41,7 @@ export function executeCommand( command: SupportedCommands, ...args: T ): Thenable { - return commands.executeCommand(command, args); + return commands.executeCommand(command, ...args); } export function executeCoreCommand(command: CoreCommands, arg: T): Thenable;