1
0
Fork 0
mirror of synced 2025-09-23 04:08:33 +00:00
ZoKrates/build_release.sh
2018-10-25 23:25:58 +02:00

10 lines
181 B
Bash
Executable file

#!/bin/bash
# Exit if any subcommand fails
set -e
if [ -n "$WITH_LIBSNARK" ]; then
cargo build --release
else
cargo -Z package-features build --release --no-default-features
fi