- #!/bin/sh
- original_path="$PWD"
- cd .. && \
- git clone https://github.com/arkworks-rs/spongefish && \
- cd spongefish && \
- git checkout fcc277f8a857fdeeadd7cca92ab08de63b1ff1a1 && \
- cd .. && \
- git clone -b victor/artifact https://github.com/sigma-rs/sigma-proofs && \
- git clone -b artifact https://git-crysp.uwaterloo.ca/SigmaProtocol/sigma-compiler && \
- git clone -b artifact https://git-crysp.uwaterloo.ca/SigmaProtocol/cmz && \
- cd "$original_path"
|