From e2efd2bf6b131d8cf0911f18cd0cba8bd1e0ae2b Mon Sep 17 00:00:00 2001 From: lmirandacastro <146885774+lmirandacastro@users.noreply.github.com> Date: Wed, 4 Feb 2026 14:21:51 -0500 Subject: [PATCH] Removed download env-file default --- scripts/download_confluence.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/download_confluence.py b/scripts/download_confluence.py index 5b2ec97..006f29d 100755 --- a/scripts/download_confluence.py +++ b/scripts/download_confluence.py @@ -713,7 +713,7 @@ def main(): ) parser.add_argument('page_ids', nargs='*', help='Page IDs to download') - parser.add_argument('--env-file', default='.env', help='Path to .env file (default: .env)') + parser.add_argument('--env-file', default=None, help='Path to specific .env file (optional)') parser.add_argument('--output-dir', help='Output directory (overrides .env CONFLUENCE_OUTPUT_DIR)') parser.add_argument('--download-children', action='store_true', help='Download child pages to subdirectories') parser.add_argument('--save-html', action='store_true', help='Save intermediate HTML files for debugging')