From c13fa009cc737e6df34c702afe1df5410ec986dc Mon Sep 17 00:00:00 2001 From: McCloudS <64094529+McCloudS@users.noreply.github.com> Date: Thu, 14 Mar 2024 00:25:38 -0600 Subject: [PATCH] Changed default of UPDATE to true This will benefit docker users. --- launcher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/launcher.py b/launcher.py index 79f2b48..42ebd97 100644 --- a/launcher.py +++ b/launcher.py @@ -22,7 +22,7 @@ def main(): output_file = "./subgen.py" # Check if the environment variable is set - github_download_enabled = convert_to_bool(os.getenv("UPDATE", False)) + github_download_enabled = convert_to_bool(os.getenv("UPDATE", True)) if not os.path.exists(output_file): print(f"File {output_file} does not exist. Downloading from GitHub...")