logos-storage-proofs/scripts/install-circom.sh
Dmitriy Ryajov 8e3e3ee985
change perms
2023-03-07 18:11:29 -06:00

12 lines
235 B
Bash
Executable File

#!/bin/bash
circom_version=v2.1.4
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
fi