1
0
Fork 0
mirror of synced 2025-09-24 04:40:05 +00:00

revert dockerfile, fix build options

This commit is contained in:
schaeff 2018-06-30 00:54:28 -04:00
parent 1d3204c90f
commit ef471811f7
3 changed files with 4 additions and 4 deletions

View file

@ -35,5 +35,5 @@ WORKDIR /root/
COPY . ZoKrates
#RUN cd ZoKrates \
# && ./build.sh
RUN cd ZoKrates \
&& ./build.sh

View file

@ -4,7 +4,7 @@
set -e
cd zokrates-cli
if [ $WITH_LIBSNARK ]; then
if [ -n "$WITH_LIBSNARK" ]; then
cargo build --features libsnark
else
cargo build

View file

@ -6,7 +6,7 @@ repository = "https://github.com/JacobEberhardt/ZoKrates.git"
build = "build.rs"
[features]
default = ["libsnark"]
default = []
libsnark = []
[dependencies]