mirror of
https://github.com/denoland/deno.git
synced 2024-11-25 15:29:32 -05:00
74fc66da11
`--allow-run` even with an allow list has essentially been `--allow-all`... this locks it down more. 1. Resolves allow list for `--allow-run=` on startup to an absolute path, then uses these paths when evaluating if a command can execute. Also, adds these paths to `--deny-write` 1. Resolves the environment (cwd and env vars) before evaluating permissions and before executing a command. Then uses this environment to evaluate the permissions and then evaluate the command.
28 lines
552 B
Text
28 lines
552 B
Text
{
|
|
"tempDir": true,
|
|
"envs": {
|
|
"DYLD_FALLBACK_LIBRARY_PATH": "",
|
|
"LD_LIBRARY_PATH": ""
|
|
},
|
|
"steps": [{
|
|
"if": "unix",
|
|
"args": "compile --output main main.ts",
|
|
"output": "[WILDCARD]"
|
|
}, {
|
|
"if": "unix",
|
|
"commandName": "./main",
|
|
"args": [],
|
|
"exitCode": 1,
|
|
"output": "main.out"
|
|
}, {
|
|
"if": "windows",
|
|
"args": "compile --output main.exe main.ts",
|
|
"output": "[WILDCARD]"
|
|
}, {
|
|
"if": "windows",
|
|
"commandName": "./main.exe",
|
|
"args": [],
|
|
"exitCode": 1,
|
|
"output": "main.out"
|
|
}]
|
|
}
|