Use outputs/ for all JSON output

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-02-11 12:36:14 +13:00
parent 22b4117990
commit 758991d75d
7 changed files with 17 additions and 17 deletions

View File

@@ -99,7 +99,7 @@ def main() -> int:
default_file2 = os.environ.get("FILE2", "").strip() or None
default_output = (
os.environ.get("COMPARE_OUTPUT", "").strip()
or "output/compare_locations.json"
or "outputs/compare_locations.json"
)
default_threshold = os.environ.get("THRESHOLD", "").strip()
try:
@@ -126,7 +126,7 @@ def main() -> int:
"-o",
"--output",
default=default_output,
help="Output JSON path (default: COMPARE_OUTPUT from .env or output/compare_locations.json)",
help="Output JSON path (default: COMPARE_OUTPUT from .env or outputs/compare_locations.json)",
)
parser.add_argument(
"--threshold",