s3si.ts/gui/scripts/compile.sh

8 lines
265 B
Bash
Raw Normal View History

2023-03-03 08:11:16 -05:00
TARGETS="x86_64-unknown-linux-gnu,x86_64-pc-windows-msvc,x86_64-apple-darwin,aarch64-apple-darwin"
# compile for every target in bash
for target in $(echo $TARGETS | sed "s/,/ /g")
do
2023-03-03 09:13:09 -05:00
deno compile --target=$target -o ./binaries/s3si-$target -A ../s3si.ts
2023-03-03 08:11:16 -05:00
done