From 160c6cc314f2ed35a83e35e0cb080271c1792472 Mon Sep 17 00:00:00 2001 From: David Enyeart Date: Tue, 11 Feb 2025 13:05:39 -0500 Subject: [PATCH] Update CA server bin path in test-network-nano-bash 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