Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -150,8 +150,12 @@ elif [[ "${1:-}" == "--update_inputs" ]]; then
# Generate new inputs
echo "Running bootstrap to generate new IVC inputs..."

BOOTSTRAP_TO=yarn-project ../../bootstrap.sh # bootstrap aztec-packages from root
../../yarn-project/end-to-end/bootstrap.sh build_bench # build bench to generate IVC inputs
cd ../../../

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I know we were already using relative paths but I'd prefer an absolute path like cd $root, in case this script is ever called from a different place.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Makes sense, changed it!

./bootstrap.sh pull_submodules
make yarn-project
cd yarn-project/end-to-end
./bootstrap.sh build_bench # build bench to generate IVC inputs
cd ../../barretenberg/cpp/scripts

compress_and_upload "$inputs_dir"

Expand Down