mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-24 02:25:09 +00:00
This reverts commit b66271af0d505bce7ce339bdfa1f1dee86774581. Signed-off-by: Brett Logan <brett.t.logan@ibm.com>
17 lines
297 B
Bash
Executable file
17 lines
297 B
Bash
Executable file
#!/bin/bash
|
|
#
|
|
# Copyright IBM Corp All Rights Reserved
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
# Exit on first error
|
|
set -ex
|
|
|
|
# Bring the test network down
|
|
pushd ../test-network
|
|
./network.sh down
|
|
popd
|
|
|
|
# clean out any old identites in the wallets
|
|
rm -rf javascript/wallet/*
|
|
rm -rf java/wallet/*
|