Skip to content
This repository has been archived by the owner on Feb 21, 2024. It is now read-only.

Commit

Permalink
Fix farmer and node wiping with script
Browse files Browse the repository at this point in the history
  • Loading branch information
nazar-pc committed Oct 11, 2021
1 parent 4701fb0 commit b981b5d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion node-template-subspace/start-farmer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ run-farm() {

wipe() {
echo "Wiping prior installation..."
docker container kill subspace-farmer
docker container kill subspace-farmer || /bin/true
docker volume rm subspace-farmer
}

Expand Down
2 changes: 1 addition & 1 deletion node-template-subspace/start-node.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ killnode() {

wipe() {
echo "Wiping prior installation..."
docker container kill subspace-node-full
docker container kill subspace-node-full || /bin/true
docker volume rm subspace-node
}
##
Expand Down

0 comments on commit b981b5d

Please sign in to comment.