bintron-r1.eclass: only find regular files

Signed-off-by: Alfred Wingate <parona@protonmail.com>
This commit is contained in:
Alfred Wingate 2024-03-01 04:23:30 +02:00
parent 3165825161
commit 3f812cecf7
No known key found for this signature in database
GPG Key ID: A12750536B5E7010
1 changed files with 1 additions and 1 deletions

View File

@ -143,7 +143,7 @@ bintron-r1_src_install() {
doins -r "${S}"/*
local file type
for file in $(find .); do
for file in $(find . -type f); do
# node_modules *shouldn't* have anything which requires executable permissions
if [[ ${file} =~ /node_modules/ ]]; then