Skip to content

Commit

Permalink
ci(nano): add --allow-sys flag to compile
Browse files Browse the repository at this point in the history
  • Loading branch information
TillaTheHun0 committed Oct 10, 2022
1 parent 0577529 commit 86c274d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions images/nano/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ clean:
@rm -rf ./build

compile-linux:
@deno compile --target=x86_64-unknown-linux-gnu --allow-env --allow-read --allow-write=__hyper__,/tmp/hyper --allow-net --unstable --no-check=remote --output ./build/hyper-x86_64-unknown-linux-gnu mod.js
@deno compile --target=x86_64-unknown-linux-gnu --allow-sys --allow-env --allow-read --allow-write=__hyper__,/tmp/hyper --allow-net --unstable --no-check=remote --output ./build/hyper-x86_64-unknown-linux-gnu mod.js

compile-apple:
@deno compile --target=x86_64-apple-darwin --allow-env --allow-read --allow-write=__hyper__,/tmp/hyper --allow-net --unstable --no-check=remote --output ./build/hyper-x86_64-apple-darwin mod.js
@deno compile --target=x86_64-apple-darwin --allow-sys --allow-env --allow-read --allow-write=__hyper__,/tmp/hyper --allow-net --unstable --no-check=remote --output ./build/hyper-x86_64-apple-darwin mod.js

compile-arch-apple:
@deno compile --target=aarch64-apple-darwin --allow-env --allow-read --allow-write=__hyper__,/tmp/hyper --allow-net --unstable --no-check=remote --output ./build/hyper-aarch64-apple-darwin mod.js
@deno compile --target=aarch64-apple-darwin --allow-sys --allow-env --allow-read --allow-write=__hyper__,/tmp/hyper --allow-net --unstable --no-check=remote --output ./build/hyper-aarch64-apple-darwin mod.js

compile-windows:
@deno compile --target=x86_64-pc-windows-msvc --allow-env --allow-read --allow-write=__hyper__,/tmp/hyper --allow-net --unstable --no-check=remote --output ./build/hyper-x86_64-pc-windows-msvc mod.js
@deno compile --target=x86_64-pc-windows-msvc --allow-sys --allow-env --allow-read --allow-write=__hyper__,/tmp/hyper --allow-net --unstable --no-check=remote --output ./build/hyper-x86_64-pc-windows-msvc mod.js

0 comments on commit 86c274d

Please sign in to comment.