From 490130979a5d3a3e703c7e28417835aa86fa8cd7 Mon Sep 17 00:00:00 2001 From: Santiago Palladino Date: Wed, 17 Jan 2024 12:12:29 -0300 Subject: [PATCH] fix: Nargo destination path in bootstrap cache (#4103) 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`). --- noir/bootstrap_cache.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/noir/bootstrap_cache.sh b/noir/bootstrap_cache.sh index 6e411a161cc..ac919f3ca65 100755 --- a/noir/bootstrap_cache.sh +++ b/noir/bootstrap_cache.sh @@ -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/