Skip to content

Commit

Permalink
Merge pull request #226 from evilguy50/deno-flag
Browse files Browse the repository at this point in the history
Add allow-all permission flag to deno filters
  • Loading branch information
Nusiq authored Nov 6, 2022
2 parents b78824a + 4494152 commit 564d348
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion regolith/filter_deno.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ func (f *DenoFilter) run(context RunContext) error {
err := RunSubProcess(
"deno",
append([]string{
"run",
"run", "--allow-all",
context.AbsoluteLocation + string(os.PathSeparator) +
f.Definition.Script},
f.Arguments...,
Expand Down

0 comments on commit 564d348

Please sign in to comment.