Browse code

Exclude projects/assets in asma-test.sh

Andrew Alderwick authored on 07/11/2021 00:48:14
Showing 1 changed files
... ...
@@ -15,7 +15,7 @@ expect_failure() {
15 15
 
16 16
 echo 'Assembling asma with uxnasm'
17 17
 bin/uxnasm projects/software/asma.tal asma-test/asma.rom > asma-test/uxnasm.log
18
-for F in $(find projects -path projects/library -prune -false -or -type f -name '*.tal' | sort); do
18
+for F in $(find projects -path projects/library -prune -false -or -path projects/assets -prune -false -or -type f -name '*.tal' | sort); do
19 19
 	echo "Comparing assembly of ${F}"
20 20
 
21 21
 	UASM_BASE="asma-test/uxnasm-$(basename "${F%.tal}")"