mirror of
https://github.com/danog/ton.git
synced 2024-12-02 09:28:02 +01:00
6 lines
145 B
Bash
Executable File
6 lines
145 B
Bash
Executable File
#!/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
|