Skip to content

Commit 194b9b9

Browse files
author
Ethan Coeytaux
committed
[FAB-5618] Allow directory to contain spaces
Added quotes to $CURRENT_DIR in byfn.sh so that the current directory can contain spaces and the script will still run properly. Change-Id: I3853e3398c29c55c46603477fada5db023808431 Issue-id: FAB-5618 Signed-off-by: Ethan Coeytaux <eacoeytaux@gmail.com>
1 parent ba0a098 commit 194b9b9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

first-network/byfn.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -161,11 +161,11 @@ function replacePrivateKey () {
161161
CURRENT_DIR=$PWD
162162
cd crypto-config/peerOrganizations/org1.example.com/ca/
163163
PRIV_KEY=$(ls *_sk)
164-
cd $CURRENT_DIR
164+
cd "$CURRENT_DIR"
165165
sed $OPTS "s/CA1_PRIVATE_KEY/${PRIV_KEY}/g" docker-compose-e2e.yaml
166166
cd crypto-config/peerOrganizations/org2.example.com/ca/
167167
PRIV_KEY=$(ls *_sk)
168-
cd $CURRENT_DIR
168+
cd "$CURRENT_DIR"
169169
sed $OPTS "s/CA2_PRIVATE_KEY/${PRIV_KEY}/g" docker-compose-e2e.yaml
170170
# If MacOSX, remove the temporary backup of the docker-compose file
171171
if [ "$ARCH" == "Darwin" ]; then

0 commit comments

Comments
 (0)