mirror of
https://github.com/pezkuwichain/pez-minimal-template.git
synced 2026-04-25 21:57:54 +00:00
9 lines
210 B
Bash
Executable File
9 lines
210 B
Bash
Executable File
#!/usr/env sh
|
|
set -eu
|
|
|
|
apt-get update
|
|
apt-get install -y curl git protobuf-compiler build-essential libclang-15-dev
|
|
|
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
|
|
. "$HOME/.cargo/env"
|