Merge pull request #1482 from marineam/firmware

coreos-firmware: do not exclude directories and symlinks
This commit is contained in:
Michael Marineau 2015-08-25 15:55:47 -07:00
commit 58203d679b
2 changed files with 4 additions and 4 deletions

View File

@ -115,10 +115,10 @@ src_prepare() {
} }
src_install() { src_install() {
local list=$(find -type f) || die if [[ -z "$(find -type f)" ]]; then
die "No firmware files found to install."
[[ -n "${list}" ]] || die "No firmware files found to install." fi
insinto /lib/firmware/ insinto /lib/firmware/
doins -r ${list} doins -r .
} }