Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
2 changes: 1 addition & 1 deletion barretenberg/bbup/bbup
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ install_bb() {
local platform=""

# Convert architecture names
if [ "$architecture" = "arm64" ]; then
if [ "$architecture" = "arm64" ] || [ "$architecture" = "aarch64" ]; then
if version_gte "$version" "0.77.0"; then
architecture="arm64"
else
Expand Down
2 changes: 1 addition & 1 deletion barretenberg/bbup/bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ case "$cmd" in
"clean")
git clean -fdx
;;
""|"fast"|"full")
""|"fast"|"full"|"bench")
;;
"ci")
test
Expand Down
Loading