Skip to content

Commit

Permalink
fix(nano): add /tmp/hyper to allow-write parameters for temp file dir…
Browse files Browse the repository at this point in the history
…ectory permissions
  • Loading branch information
TillaTheHun0 committed May 30, 2023
1 parent 30f22c8 commit 03c70b4
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 @@ -3,24 +3,24 @@ clean:

compile-linux:
@deno compile --target=x86_64-unknown-linux-gnu \
--allow-sys --allow-env --allow-read --allow-write=__hyper__ --allow-net \
--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-$(VER) mod.js

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

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

compile-windows:
@deno compile --target=x86_64-pc-windows-msvc \
--allow-sys --allow-env --allow-read --allow-write=__hyper__ --allow-net \
--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-$(VER) mod.js

0 comments on commit 03c70b4

Please sign in to comment.