setup_dependencies.sh 460 B

12345678910111213
  1. #!/bin/sh
  2. original_path="$PWD"
  3. cd .. && \
  4. git clone https://github.com/arkworks-rs/spongefish && \
  5. cd spongefish && \
  6. git checkout fcc277f8a857fdeeadd7cca92ab08de63b1ff1a1 && \
  7. cd .. && \
  8. git clone -b victor/artifact https://github.com/sigma-rs/sigma-proofs && \
  9. git clone -b artifact https://git-crysp.uwaterloo.ca/SigmaProtocol/sigma-compiler && \
  10. git clone -b artifact https://git-crysp.uwaterloo.ca/SigmaProtocol/cmz && \
  11. cd "$original_path"