From f2304ffdcaf53ee93cdb92d2f3131cf93ae2e442 Mon Sep 17 00:00:00 2001 From: cswimr Date: Sat, 28 Dec 2024 09:48:52 -0500 Subject: [PATCH] chore(tailwindcss): add a comment linking to a Gauntlet issue explaining why we're setting `LD_LIBRARY_PATH` in `open-url.open()` --- utils/open-url.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/utils/open-url.ts b/utils/open-url.ts index 5104afc..e698063 100644 --- a/utils/open-url.ts +++ b/utils/open-url.ts @@ -27,6 +27,7 @@ const open = async (url: string) => { const process = new Deno.Command(cmd, { args: [url], env: { + // https://github.com/project-gauntlet/gauntlet/issues/28 LD_LIBRARY_PATH: "", }, });