diff --git a/build.sh b/build.sh index e9f9de7..8a3471d 100755 --- a/build.sh +++ b/build.sh @@ -28,7 +28,7 @@ function build_backend { function compile_for { target=$1 mkdir -p "./dist/bin" - deno compile --target "$target" --output "./dist/bin/$target" --allow-net --allow-read --allow-write --allow-sys ./backend/src/main.ts + deno compile --config "./backend/deno.json" --target "$target" --output "./dist/bin/$target" --allow-net --allow-read --allow-write --allow-sys --allow-run ./backend/src/main.ts } function compile_all {