chore(tailwindcss): add a comment linking to a Gauntlet issue explaining why we're setting LD_LIBRARY_PATH in open-url.open()
All checks were successful
Actions / Build Plugins (pull_request) Successful in 42s

This commit is contained in:
cswimr 2024-12-28 09:48:52 -05:00
parent cbc64e1880
commit f2304ffdca
Signed by: cswimr
GPG key ID: 0EC431A8DA8F8087

View file

@ -27,6 +27,7 @@ const open = async (url: string) => {
const process = new Deno.Command(cmd, { const process = new Deno.Command(cmd, {
args: [url], args: [url],
env: { env: {
// https://github.com/project-gauntlet/gauntlet/issues/28
LD_LIBRARY_PATH: "", LD_LIBRARY_PATH: "",
}, },
}); });