1
0
Fork 0
mirror of synced 2025-09-23 20:28:36 +00:00
ZoKrates/build.sh

13 lines
162 B
Bash
Executable file

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