mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-19 08:15:08 +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
|
||||
mkdir ~/.hfc-key-store/
|
||||
fi
|
||||
cp $PWD/creds/* ~/.hfc-key-store/
|
||||
cp "$PWD"/creds/* ~/.hfc-key-store/
|
||||
# launch network; create channel and join peer to channel
|
||||
cd ../basic-network
|
||||
./start.sh
|
||||
|
|
|
|||
Loading…
Reference in a new issue