aboutsummaryrefslogtreecommitdiff
path: root/scripts/sanity-test.sh
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-02-23 06:02:17 -0600
committerCraig Jennings <c@cjennings.net>2026-02-23 06:02:17 -0600
commit2b842fcd47ac24b9da7f192f64b78f83e8fc45af (patch)
tree9e9bfd13c1fb47c1946f5c1953366f5b75856952 /scripts/sanity-test.sh
parent2faf2b088e67bb79d61b5e051a805aed60b85206 (diff)
downloadarchangel-2b842fcd47ac24b9da7f192f64b78f83e8fc45af.tar.gz
archangel-2b842fcd47ac24b9da7f192f64b78f83e8fc45af.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-xscripts/sanity-test.sh8
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" \