mirror of
https://github.com/denoland/deno.git
synced 2024-12-29 02:29:06 -05:00
1a6fd38f2f
Ref https://github.com/denoland/deno/pull/25215 Closes https://github.com/denoland/deno/issues/11964
5 lines
105 B
TypeScript
5 lines
105 B
TypeScript
const output = new Deno.Command("echo", {
|
|
env: {
|
|
"LD_PRELOAD": "./libpreload.so",
|
|
},
|
|
}).spawn();
|