mirror of
https://github.com/ton-blockchain/ton
synced 2025-02-13 11:42:18 +00:00
6 lines
145 B
Bash
6 lines
145 B
Bash
|
#!/bin/bash
|
||
|
ARCH="x86" ./build.sh || exit 1
|
||
|
ARCH="x86_64" ./build.sh || exit 1
|
||
|
ARCH="arm" ./build.sh || exit 1
|
||
|
ARCH="arm64" ./build.sh || exit 1
|