mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-22 09:35:10 +00:00
Added quotes to $PWD
Without quotes the shell executables fail to run, when the directory path has spaces in Windows
This commit is contained in:
parent
7dc852b15a
commit
57f3c11651
1 changed files with 1 additions and 1 deletions
|
|
@ -15,7 +15,7 @@ starttime=$(date +%s)
|
||||||
if [ ! -d ~/.hfc-key-store/ ]; then
|
if [ ! -d ~/.hfc-key-store/ ]; then
|
||||||
mkdir ~/.hfc-key-store/
|
mkdir ~/.hfc-key-store/
|
||||||
fi
|
fi
|
||||||
cp $PWD/creds/* ~/.hfc-key-store/
|
cp "$PWD"/creds/* ~/.hfc-key-store/
|
||||||
# launch network; create channel and join peer to channel
|
# launch network; create channel and join peer to channel
|
||||||
cd ../basic-network
|
cd ../basic-network
|
||||||
./start.sh
|
./start.sh
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue