diff options
author | Ry Dahl <ry@tinyclouds.org> | 2020-01-09 11:37:01 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-09 11:37:01 -0700 |
commit | d492c5abe3c7c0716b9695c8a40d0256569d2338 (patch) | |
tree | 15d5d901d3dac3bedefd7258d29a177a2f6ae9a0 /cli/tests | |
parent | c50cab90a05d271013f741768d70c1eda6ef9a10 (diff) |
feat: Deno.args now does not include script (#3628)
Previously Deno.args was ["script.js", "arg1", "arg2"]
Now it is just ["arg1", "arg2"]
BREAKING CHANGE
Diffstat (limited to 'cli/tests')
-rw-r--r-- | cli/tests/028_args.ts.out | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/cli/tests/028_args.ts.out b/cli/tests/028_args.ts.out index fa36f6e4c..0f1b5c59e 100644 --- a/cli/tests/028_args.ts.out +++ b/cli/tests/028_args.ts.out @@ -1,4 +1,3 @@ -028_args.ts --arg1 val1 --arg2=val2 |