Skip to content

Commit

Permalink
fix: Nargo destination path in bootstrap cache (AztecProtocol#4103)
Browse files Browse the repository at this point in the history
The destination path when copying nargo from the CI cache in
bootstrap_cache was wrong, it was getting copied to
`~/monorepo/noir/noir/target/release` (note the double `noir`).
  • Loading branch information
spalladino authored Jan 17, 2024
1 parent 20e4daf commit 4901309
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions noir/bootstrap_cache.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ cd "$(dirname "$0")"
source ../build-system/scripts/setup_env '' '' mainframe_$USER > /dev/null

echo -e "\033[1mRetrieving noir packages from remote cache...\033[0m"
extract_repo noir-packages /usr/src/noir/packages ./noir
extract_repo noir-packages /usr/src/noir/packages ./
echo -e "\033[1mRetrieving nargo from remote cache...\033[0m"
extract_repo noir /usr/src/noir/target/release ./noir/target
extract_repo noir /usr/src/noir/target/release ./target/

0 comments on commit 4901309

Please sign in to comment.