mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +00:00
17 lines
No EOL
266 B
Bash
Executable file
17 lines
No EOL
266 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
|
|
|
|
|
|
rm -rf application-go/wallet/
|
|
rm -rf application-go/keystore/ |