summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/089_run_allow_list.ts
blob: d7bc8e195f054b98fbffd13ec6d9a445a150f6ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
try {
  await Deno.spawn("ls");
} catch (e) {
  console.log(e);
}

const { success } = await Deno.spawn("curl", {
  args: ["--help"],
  stdout: "null",
  stderr: "inherit",
});
console.log(success);