mirror of
https://github.com/logos-storage/logos-storage-proofs.git
synced 2026-01-02 21:43:09 +00:00
12 lines
235 B
Bash
12 lines
235 B
Bash
|
|
#!/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
|