From aae904b31c95c7931e197a57cb873377cdef9ac2 Mon Sep 17 00:00:00 2001 From: Tristan Wilson Date: Tue, 13 Aug 2024 13:52:28 +0200 Subject: [PATCH] Contracts and node images should rebuild on --init --- test-node.bash | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test-node.bash b/test-node.bash index c202a470..4fa253a8 100755 --- a/test-node.bash +++ b/test-node.bash @@ -69,6 +69,8 @@ while [[ $# -gt 0 ]]; do read -p "are you sure? [y/n]" -n 1 response if [[ $response == "y" ]] || [[ $response == "Y" ]]; then force_init=true + build_contracts=true + build_node_images=true echo else exit 0 @@ -78,6 +80,8 @@ while [[ $# -gt 0 ]]; do ;; --init-force) force_init=true + build_contracts=true + build_node_images=true shift ;; --dev)