Skip to content

Commit

Permalink
fix: don't remove docker-compose.yml when network stops 🐛 (#4541)
Browse files Browse the repository at this point in the history
  • Loading branch information
ahasna authored Feb 16, 2024
1 parent e0983e2 commit 3d1e872
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions localnet/manage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ get-workflow() {
read -p "(default: NO) " START_TRACKER
echo
export START_TRACKER=${START_TRACKER}

fi
}

Expand Down Expand Up @@ -201,7 +201,6 @@ destroy() {
for pid in $(ps -ef | grep chainflip | grep -v grep | awk '{print $2}'); do kill -9 $pid; done
for pid in $(ps -ef | grep solana | grep -v grep | awk '{print $2}'); do kill -9 $pid; done
rm -rf /tmp/chainflip
rm ./localnet/docker-compose.yml
rm -rf /tmp/solana/
echo "done"
}
Expand Down

0 comments on commit 3d1e872

Please sign in to comment.