Merge pull request #309 from AuxXxilium/dev

build: update logic
This commit is contained in:
AuxXxilium 2024-10-19 13:06:43 +02:00 committed by GitHub
commit a7246297f6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -192,7 +192,7 @@ jobs:
while read -r L; do
if [ -e "${SOURCE}/${L}" ]; then
mkdir -p "`dirname firmware/${L}`"
cp "${SOURCE}/${L}" "firmware/${L}"
cp -f "${SOURCE}/${L}" "firmware/${L}"
else
[ -e "firmware/${L}" ] && echo "Used modules ${L}" || echo "Missing ${L}"
fi