0
0
Fork 0
mirror of https://git.sr.ht/~rabbits/uxn synced 2025-01-05 07:01:20 +00:00

Exclude projects/assets in asma-test.sh

This commit is contained in:
Andrew Alderwick 2021-11-07 00:48:14 +00:00
parent ea42a0bdd7
commit 5b3b08e526

View file

@ -15,7 +15,7 @@ expect_failure() {
echo 'Assembling asma with uxnasm'
bin/uxnasm projects/software/asma.tal asma-test/asma.rom > asma-test/uxnasm.log
for F in $(find projects -path projects/library -prune -false -or -type f -name '*.tal' | sort); do
for F in $(find projects -path projects/library -prune -false -or -path projects/assets -prune -false -or -type f -name '*.tal' | sort); do
echo "Comparing assembly of ${F}"
UASM_BASE="asma-test/uxnasm-$(basename "${F%.tal}")"