fix(script): concatenate symbol source files correctly, by using 'awk 1' instead of 'cat'

This commit is contained in:
phaneron 2024-07-09 16:17:39 -04:00
parent df4e7d67e7
commit 8bd78099a2

View file

@ -8,4 +8,4 @@ if [ $# -eq 0 ]
exit 1
fi
cat $1/symbol/*/*.sym | sort > $1/symbol/main.sym
awk 1 $1/symbol/*/*.sym | sort > $1/symbol/main.sym