From 48ff33b1b52f0d0994f0e817d0c7fd1e27fefc81 Mon Sep 17 00:00:00 2001 From: alpaca00 Date: Sun, 3 Nov 2024 19:02:01 +0100 Subject: [PATCH] Fixed TS syntax errors causing jobs failure --- driver/lib/commands/execute.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/driver/lib/commands/execute.ts b/driver/lib/commands/execute.ts index a0aa74d0..cb9c17d7 100644 --- a/driver/lib/commands/execute.ts +++ b/driver/lib/commands/execute.ts @@ -245,7 +245,7 @@ const commandExtension = async ( if (commandHandler) { return await commandHandler(self, params); } else { - throw new Error(`Command not supported: '${command}'`); + throw new Error(`Command not supported`); } };