diff --git a/aztec-up/bin/0.0.1/aztec-install b/aztec-up/bin/0.0.1/aztec-install index 5c6f8f59d0a9..92d3e38ab075 100755 --- a/aztec-up/bin/0.0.1/aztec-install +++ b/aztec-up/bin/0.0.1/aztec-install @@ -51,11 +51,12 @@ function title { echo -e "Installing version: ${bold}${g}$VERSION${r}" echo echo -e "This install script will install the following and update your PATH if necessary:" - echo -e " ${bold}${g}nargo${r} - the version of the noir programming language compatible with this version of aztec." - echo -e " ${bold}${g}bb${r} - the version of the barretenberg proving backend compatible with this version of aztec." - echo -e " ${bold}${g}aztec${r} - a collection of tools to compile and test contracts, to launch subsystems and interact with the aztec network." - echo -e " ${bold}${g}aztec-up${r} - a tool to install and manage aztec toolchain versions." - echo -e " ${bold}${g}aztec-wallet${r} - our minimalistic CLI wallet" + echo -e " ${bold}${g}nargo${r} - the version of the noir programming language compatible with this version of aztec." + echo -e " ${bold}${g}noir-profiler${r} - a sampling profiler for analyzing and visualizing Noir programs." + echo -e " ${bold}${g}bb${r} - the version of the barretenberg proving backend compatible with this version of aztec." + echo -e " ${bold}${g}aztec${r} - a collection of tools to compile and test contracts, to launch subsystems and interact with the aztec network." + echo -e " ${bold}${g}aztec-up${r} - a tool to install and manage aztec toolchain versions." + echo -e " ${bold}${g}aztec-wallet${r} - our minimalistic CLI wallet" echo read -p "Do you wish to continue? (y/n) " -n 1 -r echo diff --git a/aztec-up/bin/0.0.1/install b/aztec-up/bin/0.0.1/install index d78c1d76107e..f5f8783efb6b 100755 --- a/aztec-up/bin/0.0.1/install +++ b/aztec-up/bin/0.0.1/install @@ -153,6 +153,8 @@ function install_noir { # Move the nargo binary to our version bin directory mv "$temp_nargo_home/bin/nargo" "$version_bin_path/nargo" + # Also move noir-profiler, needed by `aztec profile flamegraph` + mv "$temp_nargo_home/bin/noir-profiler" "$version_bin_path/noir-profiler" # Cleanup temp directory rm -rf "$temp_nargo_home"