feat: remove test stage check

This commit is contained in:
xyhhx 2024-08-20 17:41:29 -04:00
parent ae19f8d228
commit 624c74d293
No known key found for this signature in database
GPG key ID: 0960B11DB1AC1C5D

View file

@ -8,7 +8,7 @@ has-stage () {
check-stages () {
all_packages=$(ls -1 ./packages | sort)
stages="base fetch build install test package"
stages="base fetch build install package"
for stage in $stages; do
missing=$(comm -13 <(has-stage "${stage}") <(ls -1 ./packages | sort))