Skip to content

Commit

Permalink
[FAB-9329] Remove the unused variable in BYFN/EYFN
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
yuki-kon authored and lehors committed Jun 3, 2019
1 parent 964c09f commit 1e9e4c4
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 9 deletions.
3 changes: 0 additions & 3 deletions first-network/byfn.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 0 additions & 3 deletions first-network/eyfn.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 0 additions & 3 deletions interest_rate_swaps/network/network.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 1e9e4c4

Please sign in to comment.