Skip to content

Commit

Permalink
FAB-9880 Update generateArtifacts.sh
Browse files Browse the repository at this point in the history
This patch fix the unexpected EOF issue

Change-Id: Ice3d7d7c7aa4b283ebb6f2b49c039a5297782ec5
Signed-off-by: rameshthoomu <[email protected]>
  • Loading branch information
rameshthoomu authored and ryjones committed May 4, 2018
1 parent d45ea1b commit e512e74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/e2e_cli/generateArtifacts.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export FABRIC_ROOT=$PWD/../..
export FABRIC_CFG_PATH=$PWD
echo

OS_ARCH=$(echo "$(uname -s|tr '[:upper:]' '[:lower:]'|sed 's/mingw64_nt.*/windows/')-$(uname -m | awk '{print tolower($0)}')
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)}')

## Using docker-compose template replace private key file names with constants
function replacePrivateKey () {
Expand Down

0 comments on commit e512e74

Please sign in to comment.