mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
e7b7129b7a
This commit adds allowlist support to `--allow-run` flag. Additionally `Deno.permissions.query()` allows to query for specific programs within allowlist.
13 lines
208 B
TypeScript
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);
|