From 4d1ffa1aaffb149a48148be1543b4974e5e163be Mon Sep 17 00:00:00 2001 From: mamoodi Date: Sun, 23 Jun 2024 11:56:56 -0400 Subject: [PATCH] Default makefile for persist_sandbox to be false (#2605) Co-authored-by: Mahmoud Work --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index d33e8a4b55..8d0b834de0 100644 --- a/Makefile +++ b/Makefile @@ -238,8 +238,8 @@ setup-config-prompts: workspace_dir=$${workspace_dir:-$(DEFAULT_WORKSPACE_DIR)}; \ echo "workspace_base=\"$$workspace_dir\"" >> $(CONFIG_FILE).tmp - @read -p "Do you want to persist the sandbox container? [true/false] [default: true]: " persist_sandbox; \ - persist_sandbox=$${persist_sandbox:-true}; \ + @read -p "Do you want to persist the sandbox container? [true/false] [default: false]: " persist_sandbox; \ + persist_sandbox=$${persist_sandbox:-false}; \ if [ "$$persist_sandbox" = "true" ]; then \ read -p "Enter a password for the sandbox container: " ssh_password; \ echo "ssh_password=\"$$ssh_password\"" >> $(CONFIG_FILE).tmp; \