0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-10-31 09:14:20 -04:00
denoland-deno/cli/tests/089_run_allow_list.ts
crowlKats e7b7129b7a
feat(permissions): allow run permission to take values (#9833)
This commit adds allowlist support to `--allow-run` flag.

Additionally `Deno.permissions.query()` allows to query for specific
programs within allowlist.
2021-04-10 00:12:00 +02:00

13 lines
208 B
TypeScript

try {
Deno.run({
cmd: ["ls"],
});
} catch (e) {
console.log(e);
}
const proc = Deno.run({
cmd: ["cat", "089_run_allow_list.ts"],
stdout: "null",
});
console.log((await proc.status()).success);