mirror of
https://github.com/fluencelabs/jsonpath
synced 2025-04-02 23:11:08 +00:00
11 lines
249 B
Bash
11 lines
249 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if ! [ -x "$(command -v rustc)" ]; then
|
||
|
echo "install rust"
|
||
|
curl https://sh.rustup.rs -sSf > /tmp/rustup.sh
|
||
|
sh /tmp/rustup.sh -y
|
||
|
export PATH="$HOME/.cargo/bin:$PATH"
|
||
|
source "$HOME/.cargo/env"
|
||
|
fi
|
||
|
|
||
|
neon build --release
|