diff options
author | Chris Lamb <chris@chris-lamb.co.uk> | 2008-06-13 15:53:19 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 19:03:34 +0100 |
commit | 01a611b24df62850aaaf9971d9d874a1f8ae8acc (patch) | |
tree | 87900be3dbd85585b6d55452a666a9c5f2417e3c /helpers/lh_binary_local-includes | |
parent | 7540b66682f1650b7f245c01c8087f97c39a6fd3 (diff) | |
download | vyos-live-build-01a611b24df62850aaaf9971d9d874a1f8ae8acc.tar.gz vyos-live-build-01a611b24df62850aaaf9971d9d874a1f8ae8acc.zip |
Don't skip single dot-files in the root directory of binary and chroot local includes
Diffstat (limited to 'helpers/lh_binary_local-includes')
-rwxr-xr-x | helpers/lh_binary_local-includes | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helpers/lh_binary_local-includes b/helpers/lh_binary_local-includes index a12a186ff..04e429e94 100755 --- a/helpers/lh_binary_local-includes +++ b/helpers/lh_binary_local-includes @@ -42,7 +42,7 @@ Check_lockfile .lock # Creating lock file Create_lockfile .lock -if ls config/binary_local-includes/* > /dev/null 2>&1 +if ls -A config/binary_local-includes/ | grep . > /dev/null 2>&1 then # Copying includes cd config/binary_local-includes |