From d889c40b4b17d393ffeaac6738be13673190e02f Mon Sep 17 00:00:00 2001 From: benesjan Date: Tue, 26 Sep 2023 10:37:24 +0000 Subject: [PATCH] fix --- yarn-project/bootstrap.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/yarn-project/bootstrap.sh b/yarn-project/bootstrap.sh index ebff8223db15..81b933d0bf7e 100755 --- a/yarn-project/bootstrap.sh +++ b/yarn-project/bootstrap.sh @@ -16,18 +16,18 @@ set -eu yarn install --immutable -# Run remake bindings before building Aztec.nr contracts or l1 contracts as they depend on files created by it. -yarn --cwd circuits.js remake-bindings -yarn --cwd circuits.js remake-constants - # Build the necessary dependencies for Aztec.nr contracts typegen. -for DIR in foundation noir-compiler circuits.js; do +for DIR in foundation noir-compiler; do echo "Building $DIR..." cd $DIR yarn build cd .. done +# Run remake bindings before building Aztec.nr contracts or l1 contracts as they depend on files created by it. +yarn --cwd circuits.js remake-bindings +yarn --cwd circuits.js remake-constants + (cd noir-contracts && ./bootstrap.sh) (cd .. && l1-contracts/bootstrap.sh)