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/installer/mod.ts | |
parent | 7d2d442a77343a3c4ab6c638bd817e51c6cadd2e (diff) |
feat(flags): script arguments come after '--' (#3621)
Diffstat (limited to 'std/installer/mod.ts')
-rw-r--r-- | std/installer/mod.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/std/installer/mod.ts b/std/installer/mod.ts index b39121ab9..a8a280d93 100644 --- a/std/installer/mod.ts +++ b/std/installer/mod.ts @@ -255,6 +255,7 @@ export async function install( "run", ...grantedPermissions.map(getFlagFromPermission), moduleUrl, + "--", ...scriptArgs ]; |