updated Makefile setup-config to store the persist_sandbox bolean value to config.toml (#2304)

Co-authored-by: msadough <msadough@amazon.com>
This commit is contained in:
Mohammad Sadoughi 2024-06-06 15:14:09 -07:00 committed by GitHub
parent dea9b5c258
commit 19788cbad8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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