From 19788cbad863dcbe5cb2185b0578f01e4a0f0290 Mon Sep 17 00:00:00 2001 From: Mohammad Sadoughi <72999587+mohammadkazem-sadoughi@users.noreply.github.com> Date: Thu, 6 Jun 2024 15:14:09 -0700 Subject: [PATCH] updated Makefile setup-config to store the persist_sandbox bolean value to config.toml (#2304) Co-authored-by: msadough --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 00467a4b64..12ff50ef7b 100644 --- a/Makefile +++ b/Makefile @@ -238,6 +238,7 @@ setup-config-prompts: if [ "$$persist_sandbox" = "true" ]; then \ read -p "Enter a password for the sandbox container: " ssh_password; \ echo "ssh_password=\"$$ssh_password\"" >> $(CONFIG_FILE).tmp; \ + echo "persist_sandbox=$$persist_sandbox" >> $(CONFIG_FILE).tmp; \ else \ echo "persist_sandbox=$$persist_sandbox" >> $(CONFIG_FILE).tmp; \ fi