mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +00:00
[FAB-9329] Remove the unused variable in BYFN/EYFN
This CR removes the unused variable 'OS_ARCH' from byfn.sh, eyfn.sh and interest swap in fabric-samples. FAB-9329 #done Change-Id: I0d1b87679d66bec1d9e4aaee9e770305f9c8f4b9 Signed-off-by: Yuki Kondo <yuki.kondo@hal.hitachi.com>
This commit is contained in:
parent
964c09fe00
commit
1e9e4c4dce
3 changed files with 0 additions and 9 deletions
|
|
@ -480,9 +480,6 @@ function generateChannelArtifacts() {
|
|||
echo
|
||||
}
|
||||
|
||||
# Obtain the OS and Architecture string that will be used to select the correct
|
||||
# native binaries for your platform, e.g., darwin-amd64 or linux-amd64
|
||||
OS_ARCH=$(echo "$(uname -s | tr '[:upper:]' '[:lower:]' | sed 's/mingw64_nt.*/windows/')-$(uname -m | sed 's/x86_64/amd64/g')" | awk '{print tolower($0)}')
|
||||
# timeout duration - the duration the CLI should wait for a response from
|
||||
# another container before giving up
|
||||
CLI_TIMEOUT=10
|
||||
|
|
|
|||
|
|
@ -218,9 +218,6 @@ if [ ! -d crypto-config ]; then
|
|||
exit 1
|
||||
fi
|
||||
|
||||
# Obtain the OS and Architecture string that will be used to select the correct
|
||||
# native binaries for your platform
|
||||
OS_ARCH=$(echo "$(uname -s|tr '[:upper:]' '[:lower:]'|sed 's/mingw64_nt.*/windows/')-$(uname -m | sed 's/x86_64/amd64/g')" | awk '{print tolower($0)}')
|
||||
# timeout duration - the duration the CLI should wait for a response from
|
||||
# another container before giving up
|
||||
CLI_TIMEOUT=10
|
||||
|
|
|
|||
|
|
@ -184,9 +184,6 @@ function generateChannelArtifacts() {
|
|||
fi
|
||||
}
|
||||
|
||||
# Obtain the OS and Architecture string that will be used to select the correct
|
||||
# native binaries for your platform, e.g., darwin-amd64 or linux-amd64
|
||||
OS_ARCH=$(echo "$(uname -s | tr '[:upper:]' '[:lower:]' | sed 's/mingw64_nt.*/windows/')-$(uname -m | sed 's/x86_64/amd64/g')" | awk '{print tolower($0)}')
|
||||
CHANNEL_NAME="irs"
|
||||
COMPOSE_FILE=docker-compose.yaml
|
||||
COMPOSE_PROJECT_NAME=fabric-irs
|
||||
|
|
|
|||
Loading…
Reference in a new issue