Skip to content

Commit

Permalink
Allow read access to system when building
Browse files Browse the repository at this point in the history
  • Loading branch information
WilliamBergamin committed Aug 28, 2024
1 parent 3c17ffc commit 4306b51
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ export const projectScripts = (args: string[]) => {
"runtime": "deno",
"hooks": {
"get-manifest":
`deno run -q --config=deno.jsonc --allow-read --allow-net --allow-env https://deno.land/x/${HOOKS_TAG}/get_manifest.ts`,
`deno run -q --config=deno.jsonc --allow-read --allow-net --allow-env --allow-sys=onRelease https://deno.land/x/${HOOKS_TAG}/get_manifest.ts`,
"get-trigger":
`deno run -q --config=deno.jsonc --allow-read --allow-net --allow-env https://deno.land/x/${HOOKS_TAG}/get_trigger.ts`,
"build":
`deno run -q --config=deno.jsonc --allow-read --allow-write --allow-net --allow-run --allow-env https://deno.land/x/${HOOKS_TAG}/build.ts`,
`deno run -q --config=deno.jsonc --allow-read --allow-write --allow-net --allow-run --allow-env --allow-sys=osRelease https://deno.land/x/${HOOKS_TAG}/build.ts`,
"start":
`deno run -q --config=deno.jsonc --allow-read --allow-net --allow-run --allow-env https://deno.land/x/${RUNTIME_TAG}/local-run.ts ${startHookFlags}`,
"check-update":
Expand Down

0 comments on commit 4306b51

Please sign in to comment.