mirror of
https://github.com/AtHeartEngineer/rlnjs.git
synced 2026-01-10 05:28:05 -05:00
14 lines
263 B
Bash
Executable File
14 lines
263 B
Bash
Executable File
#!/bin/bash
|
|
|
|
circom_version=v2.1.5
|
|
|
|
if ! [ -x "$(command -v circom)" ]; then
|
|
git clone https://github.com/iden3/circom.git
|
|
cd circom
|
|
git checkout $circom_version
|
|
cargo build --release
|
|
cargo install --path circom
|
|
cd ..
|
|
rm -rf circom
|
|
fi
|