[build.sh] Now adds bunc functions

This commit is contained in:
ayakael 2018-04-07 19:58:45 -04:00
parent b975360ba8
commit abef0cd0d3
No known key found for this signature in database
GPG key ID: 575626A4AE5F4026

View file

@ -4,8 +4,8 @@ EXEC=dam
echo -e "#!/bin/bash\n" > ${EXEC}
for file in src/env $(find src/ -type f -not -name env -not -name parser) src/parser; do
for file in src/env $(find bunc/src -type f) $(find src/ -type f -not -name env -not -name parser) src/parser; do
awk '!/^ *#/ && NF' ${file} >> ${EXEC}
done
chmod +x ${EXEC}