1
0
Fork 0
mirror of synced 2025-09-23 04:08:33 +00:00
ZoKrates/build.sh
2018-06-30 00:32:15 -04:00

13 lines
157 B
Bash
Executable file

#!/bin/bash
# Exit if any subcommand fails
set -e
cd zokrates-cli
if [ $WITH_LIBSNARK ]; then
cargo build --features libsnark
else
cargo build
fi
cd ..