10 lines
184 B
Bash
Executable file
10 lines
184 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Exit if any subcommand fails
|
|
set -e
|
|
|
|
if [ -n "$WITH_LIBSNARK" ]; then
|
|
cargo build --release --package zokrates_cli --features="libsnark"
|
|
else
|
|
cargo build --release
|
|
fi
|