mirror of
https://github.com/denoland/deno.git
synced 2024-12-01 16:51:13 -05:00
c6793f52b9
Follow up to https://github.com/denoland/deno/pull/25221 I looked into what the list was and it was quite extensive, so I think as suggested in https://github.com/denoland/deno/issues/11964#issuecomment-2314585135 we should disallow this for any `LD_` prefixed env var.
19 lines
416 B
Text
19 lines
416 B
Text
{
|
|
"envs": {
|
|
"LD_LIBRARY_PATH": "",
|
|
"LD_PRELOAD": "",
|
|
"DYLD_FALLBACK_LIBRARY_PATH": ""
|
|
},
|
|
"tests": {
|
|
"env_arg": {
|
|
"args": "run --allow-run=echo env_arg.ts",
|
|
"output": "env_arg.out",
|
|
"exitCode": 1
|
|
},
|
|
"set_with_allow_env": {
|
|
"args": "run --allow-run=echo --allow-env set_with_allow_env.ts",
|
|
"output": "set_with_allow_env.out",
|
|
"exitCode": 1
|
|
}
|
|
}
|
|
}
|