updated build system

This commit is contained in:
Scott E. Graves 2024-07-11 07:42:28 -05:00
parent 4649f66c00
commit 7b12d8f9e9

View File

@ -86,8 +86,12 @@ if [ -f "${SOURCE_DIR}/post_build.sh" ]; then
fi
pushd "${PROJECT_DIST_DIR}"
IFS=$'\n'
set -f
FILE_LIST=$(find . -type f)
for FILE in "${FILE_LIST[@]}"; do
for FILE in ${FILE_LIST}; do
sha256sum ${FILE} >${FILE}.sha256
done
unset IFS
set +f
popd