From 0126ca518ece3df987f84d8a8605ceb521ea6045 Mon Sep 17 00:00:00 2001 From: Dave Enyeart Date: Wed, 12 Feb 2025 06:10:10 -0500 Subject: [PATCH] Update CA server bin path in test-network-nano-bash (#1299) test-network-nano-bash is often used with locally built fabric and fabric-ca binaries. As such the intent is to first look for locally built binaries and then fall back to binaries downloaded with the samples. This was correct for fabric binaries but not the fabric-ca binaries. Signed-off-by: David Enyeart --- test-network-nano-bash/ordererca.sh | 2 +- test-network-nano-bash/org1ca.sh | 2 +- test-network-nano-bash/org2ca.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/test-network-nano-bash/ordererca.sh b/test-network-nano-bash/ordererca.sh index c8df4bcc..0e02c8a4 100755 --- a/test-network-nano-bash/ordererca.sh +++ b/test-network-nano-bash/ordererca.sh @@ -2,7 +2,7 @@ # # SPDX-License-Identifier: Apache-2.0 # -export PATH="${PWD}"/../../fabric/build/bin:"${PWD}"/../bin:"${PATH}" +export PATH="${PWD}"/../../fabric-ca/bin:"${PWD}"/../bin:"${PATH}" export FABRIC_CFG_PATH="${PWD}"/../config #Configure the CA_NAME, CA_PORT, OPERATIONS_PORT and CSR_HOSTS for the CA diff --git a/test-network-nano-bash/org1ca.sh b/test-network-nano-bash/org1ca.sh index 4c39e08c..e281cb6d 100755 --- a/test-network-nano-bash/org1ca.sh +++ b/test-network-nano-bash/org1ca.sh @@ -2,7 +2,7 @@ # # SPDX-License-Identifier: Apache-2.0 # -export PATH="${PWD}"/../../fabric/build/bin:"${PWD}"/../bin:"${PATH}" +export PATH="${PWD}"/../../fabric-ca/bin:"${PWD}"/../bin:"${PATH}" export FABRIC_CFG_PATH="${PWD}"/../config #Configure the CA_NAME, CA_PORT, OPERATIONS_PORT and CSR_HOSTS for the CA diff --git a/test-network-nano-bash/org2ca.sh b/test-network-nano-bash/org2ca.sh index b8343aa1..8001ce6c 100755 --- a/test-network-nano-bash/org2ca.sh +++ b/test-network-nano-bash/org2ca.sh @@ -2,7 +2,7 @@ # # SPDX-License-Identifier: Apache-2.0 # -export PATH="${PWD}"/../../fabric/build/bin:"${PWD}"/../bin:"${PATH}" +export PATH="${PWD}"/../../fabric-ca/bin:"${PWD}"/../bin:"${PATH}" export FABRIC_CFG_PATH="${PWD}"/../config #Configure the CA_NAME, CA_PORT, OPERATIONS_PORT and CSR_HOSTS for the CA