From 4053968c0c51d0dd655645b5de3edeb129c2ad7a Mon Sep 17 00:00:00 2001 From: saleel Date: Fri, 6 Dec 2024 17:58:29 +0530 Subject: [PATCH] fix: url in bbup install curl -L https://bbup.dev | bash was failing for me --- barretenberg/bbup/install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/barretenberg/bbup/install b/barretenberg/bbup/install index 2dee6434eeb..030c5f6c5c5 100755 --- a/barretenberg/bbup/install +++ b/barretenberg/bbup/install @@ -12,7 +12,7 @@ ERROR="✗" BB_DIR="${HOME}/.bb" INSTALL_PATH="${BB_DIR}/bbup" -BBUP_URL="https://raw.githubusercontent.com/AztecProtocol/aztec-packages/main/barretenberg/bbup/bbup" +BBUP_URL="https://raw.githubusercontent.com/AztecProtocol/aztec-packages/master/barretenberg/bbup/bbup" # Create .bb directory if it doesn't exist mkdir -p "$BB_DIR"