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:
Akshat Agarwal 2020-03-22 03:14:18 +05:30 committed by GitHub
parent b191c919f3
commit b8a5c29bf8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
27 changed files with 60 additions and 60 deletions

View file

@ -221,7 +221,7 @@ for (const s of scenes) {
const p = Deno.run({
stdout: "piped",
cwd: testdataDir,
args: args
cmd: args
});
assert(p.stdout);