From 3d73f6428ff85118b8d311a90e7833c97ce13a30 Mon Sep 17 00:00:00 2001 From: Jas Singh Date: Mon, 2 Sep 2024 22:57:03 -0700 Subject: [PATCH] Fix bash command for update module. (#221) --- customModules/updates/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/customModules/updates/index.ts b/customModules/updates/index.ts index d92cef9..944a28e 100644 --- a/customModules/updates/index.ts +++ b/customModules/updates/index.ts @@ -31,7 +31,7 @@ pollVariableBash( pendingUpdates, [padZero.bind('value')], pollingInterval.bind('value'), - `bash -c "${updateCommand.value}"`, + updateCommand.value, processUpdateCount, );