From 2c2741259cc285347282f210df940552d3e2709d Mon Sep 17 00:00:00 2001 From: Chris O'Neil Date: Tue, 3 Dec 2024 15:22:56 +0000 Subject: [PATCH] fix: other references to `autonomi` binary These should also have been replaced as part of the crate/binary rename. --- Justfile | 20 +++++++++---------- .../scripts/remove-s3-binary-archives.sh | 4 ++-- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Justfile b/Justfile index 565df8e001..6dfdc6ea7b 100644 --- a/Justfile +++ b/Justfile @@ -68,7 +68,7 @@ build-release-artifacts arch nightly="false": cargo binstall --no-confirm cross cross build --release --target $arch --bin nat-detection $nightly_feature cross build --release --target $arch --bin node-launchpad $nightly_feature - cross build --release --features network-contacts,websockets --target $arch --bin autonomi $nightly_feature + cross build --release --features network-contacts,websockets --target $arch --bin ant $nightly_feature cross build --release --features network-contacts,websockets --target $arch --bin antnode $nightly_feature cross build --release --target $arch --bin antctl $nightly_feature cross build --release --target $arch --bin antctld $nightly_feature @@ -76,7 +76,7 @@ build-release-artifacts arch nightly="false": else cargo build --release --target $arch --bin nat-detection $nightly_feature cargo build --release --target $arch --bin node-launchpad $nightly_feature - cargo build --release --features network-contacts,websockets --target $arch --bin autonomi $nightly_feature + cargo build --release --features network-contacts,websockets --target $arch --bin ant $nightly_feature cargo build --release --features network-contacts,websockets --target $arch --bin antnode $nightly_feature cargo build --release --target $arch --bin antctl $nightly_feature cargo build --release --target $arch --bin antctld $nightly_feature @@ -115,7 +115,7 @@ package-all-bins: set -e just package-bin "nat-detection" just package-bin "node-launchpad" - just package-bin "autonomi" + just package-bin "ant" just package-bin "antnode" just package-bin "antctl" just package-bin "antctld" @@ -140,7 +140,7 @@ package-bin bin version="": supported_bins=(\ "nat-detection" \ "node-launchpad" \ - "autonomi" \ + "ant" \ "antnode" \ "antctl" \ "antctld" \ @@ -155,7 +155,7 @@ package-bin bin version="": node-launchpad) crate_dir_name="node-launchpad" ;; - autonomi) + ant) crate_dir_name="autonomi-cli" ;; antnode) @@ -208,7 +208,7 @@ upload-all-packaged-bins-to-s3: binaries=( nat-detection node-launchpad - autonomi + ant antnode antctl antnode_rpc_client @@ -229,7 +229,7 @@ upload-packaged-bin-to-s3 bin_name: node-launchpad) bucket="node-launchpad" ;; - autonomi) + ant) bucket="autonomi-cli" ;; antnode) @@ -239,7 +239,7 @@ upload-packaged-bin-to-s3 bin_name: bucket="antctl" ;; antctld) - bucket="antctld" + bucket="antctl" ;; antnode_rpc_client) bucket="antnode-rpc-client" @@ -279,7 +279,7 @@ delete-s3-bin bin_name version: node-launchpad) bucket="node-launchpad" ;; - autonomi) + ant) bucket="autonomi-cli" ;; antnode) @@ -363,7 +363,7 @@ package-arch arch: binaries=( nat-detection node-launchpad - autonomi + ant antnode antctl antnode_rpc_client diff --git a/resources/scripts/remove-s3-binary-archives.sh b/resources/scripts/remove-s3-binary-archives.sh index bcd4373572..117b774f25 100755 --- a/resources/scripts/remove-s3-binary-archives.sh +++ b/resources/scripts/remove-s3-binary-archives.sh @@ -17,7 +17,7 @@ architectures=( declare -A binary_crate_dir_mappings=( ["nat-detection"]="nat-detection" ["node-launchpad"]="node-launchpad" - ["autonomi"]="autonomi-cli" + ["ant"]="ant-cli" ["antnode"]="ant-node" ["antctl"]="ant-node-manager" ["antnode_rpc_client"]="ant-node-rpc-client" @@ -26,7 +26,7 @@ declare -A binary_crate_dir_mappings=( declare -A binary_s3_bucket_mappings=( ["nat-detection"]="nat-detection" ["node-launchpad"]="node-launchpad" - ["autonomi"]="autonomi-cli" + ["ant"]="autonomi-cli" ["antnode"]="antnode" ["antctl"]="antctl" ["antnode_rpc_client"]="antnode-rpc-client"