diff options
author | Ry Dahl <ry@tinyclouds.org> | 2020-01-08 14:59:53 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-08 14:59:53 -0500 |
commit | 2d5457df15d8c4a81362bb2d185b5c6013faa1d8 (patch) | |
tree | ec851e15cb57c494f839de28abdb5a787487f8a5 /std/manual.md | |
parent | 7d2d442a77343a3c4ab6c638bd817e51c6cadd2e (diff) |
feat(flags): script arguments come after '--' (#3621)
Diffstat (limited to 'std/manual.md')
-rw-r--r-- | std/manual.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/std/manual.md b/std/manual.md index fe5cde925..2ac31fc80 100644 --- a/std/manual.md +++ b/std/manual.md @@ -394,6 +394,7 @@ const p = Deno.run({ "run", "--allow-read", "https://deno.land/std/examples/cat.ts", + "--", ...fileNames ], stdout: "piped", |