From 51636daebfac034380d1122ad5ea22c2e6dd9cf4 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Mon, 23 Feb 2026 06:02:17 -0600 Subject: scrub personal info and make distribution targets configurable Remove personal email addresses, hardcoded paths, and infrastructure references to prepare for open-source release. Distribution targets in build-release are now configurable via environment variables, and archsetup inclusion is opt-in. --- scripts/sanity-test.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'scripts/sanity-test.sh') diff --git a/scripts/sanity-test.sh b/scripts/sanity-test.sh index 1973ee6..b0aa0d7 100755 --- a/scripts/sanity-test.sh +++ b/scripts/sanity-test.sh @@ -289,10 +289,10 @@ run_sanity_tests() { "uname -r" \ "lts" - # Test 10: archsetup directory present - run_test "archsetup directory present" \ - "test -d /code/archsetup && echo 'exists'" \ - "exists" + # Test 10: archsetup directory present (optional - only if ARCHSETUP_DIR was set during build) + run_test "archsetup directory (optional)" \ + "test -d /code/archsetup && echo 'present' || echo 'not included'" \ + "" # Test 11: Btrfs tools installed (dual filesystem support) run_test "Btrfs tools installed" \ -- cgit v1.2.3