mirror of
https://github.com/denoland/deno.git
synced 2025-09-27 12:49:10 +00:00
BREAKING CHANGE Rename Deno.run's args to cmd (#4444)
This is to avoid confusion with Deno.args which does not include the executable to be run.
This commit is contained in:
parent
b191c919f3
commit
b8a5c29bf8
27 changed files with 60 additions and 60 deletions
|
@ -221,7 +221,7 @@ for (const s of scenes) {
|
|||
const p = Deno.run({
|
||||
stdout: "piped",
|
||||
cwd: testdataDir,
|
||||
args: args
|
||||
cmd: args
|
||||
});
|
||||
|
||||
assert(p.stdout);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue