diff options
| author | Craig Jennings <c@cjennings.net> | 2026-02-23 06:02:17 -0600 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2026-02-23 06:02:17 -0600 |
| commit | 51636daebfac034380d1122ad5ea22c2e6dd9cf4 (patch) | |
| tree | 9e9bfd13c1fb47c1946f5c1953366f5b75856952 /scripts/sanity-test.sh | |
| parent | 9e34c087ddb714598cb5eae78751fd416726d864 (diff) | |
| download | archangel-51636daebfac034380d1122ad5ea22c2e6dd9cf4.tar.gz archangel-51636daebfac034380d1122ad5ea22c2e6dd9cf4.zip | |
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.
Diffstat (limited to 'scripts/sanity-test.sh')
| -rwxr-xr-x | scripts/sanity-test.sh | 8 |
1 files changed, 4 insertions, 4 deletions
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" \ |
