fabric-samples/fabcar/stop.sh
2017-11-21 13:56:42 +09:00

22 lines
448 B
Bash
Executable file

#!/bin/bash
#
# Copyright IBM Corp All Rights Reserved
#
# SPDX-License-Identifier: Apache-2.0
#
# Exit on first error
set -e
# don't rewrite paths for Windows Git Bash users
export MSYS_NO_PATHCONV=1
starttime=$(date +%s)
#delete hfc-key-store file
rm -rf hfc-key-store
# launch network; create channel and join peer to channel
cd ../basic-network
./stop.sh
printf "\nTotal setup execution time : $(($(date +%s) - starttime)) secs ...\n\n\n"