12 lines
143 B
Bash
12 lines
143 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
apt-get update
|
||
|
apt-get -y install libclang-dev jq
|
||
|
|
||
|
git clone https://github.com/near/nearcore
|
||
|
cd nearcore
|
||
|
make sandbox-release
|
||
|
|
||
|
|
||
|
|