From 394308bc0ad631584c92ba7f34e9bb850fb46705 Mon Sep 17 00:00:00 2001 From: George Fu Date: Tue, 29 Oct 2024 14:08:19 -0400 Subject: [PATCH] test: temporarily ignore turbo error --- scripts/turbo/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/turbo/index.js b/scripts/turbo/index.js index b5640e799e7e..89ad6e8f366f 100644 --- a/scripts/turbo/index.js +++ b/scripts/turbo/index.js @@ -28,7 +28,7 @@ const runTurbo = async (task, args, { apiSecret, apiEndpoint, apiSignatureKey } }); } catch (error) { console.error("Error running turbo:", error); - throw error; + // throw error; } };