Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: install aztec-builder #6149

Merged
merged 1 commit into from
May 2, 2024
Merged
Changes from all 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
3 changes: 3 additions & 0 deletions aztec-up/bin/aztec-install
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ function title() {
echo -e " ${bold}${g}aztec-nargo${r} - aztec's build of nargo, the noir compiler toolchain."
echo -e " ${bold}${g}aztec-sandbox${r} - a wrapper around docker-compose that launches services needed for sandbox testing."
echo -e " ${bold}${g}aztec-up${r} - a tool to upgrade the aztec toolchain to the latest, or specific versions."
echo -e " ${bold}${g}aztec-builder${r} - a tool to generate typescript interfaces of Noir contracts"
echo
read -p "Do you wish to continue? (y/n)" -n 1 -r
echo
Expand Down Expand Up @@ -106,6 +107,7 @@ if [ -z "${SKIP_PULL:-}" ]; then
info "Pulling aztec version $VERSION..."
pull_container aztec
pull_container noir
pull_container aztec-builder
fi

# Download the Docker Compose file. Used by aztec.
Expand All @@ -124,6 +126,7 @@ install_bin aztec
install_bin aztec-sandbox
install_bin aztec-up
install_bin aztec-nargo
install_bin aztec-builder

function update_path_env_var {
TARGET_DIR="${1}"
Expand Down
Loading