Don't skip single dot-files in the root directory of binary and chroot local includes

Signed-off-by: Chris Lamb <chris@chris-lamb.co.uk>
This commit is contained in:
Chris Lamb 2008-06-13 15:53:19 +01:00
parent 36035832fb
commit ef26b6ea78
2 changed files with 2 additions and 2 deletions

View File

@ -42,7 +42,7 @@ Check_lockfile .lock
# Creating lock file # Creating lock file
Create_lockfile .lock 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 then
# Copying includes # Copying includes
cd config/binary_local-includes cd config/binary_local-includes

View File

@ -42,7 +42,7 @@ Check_lockfile .lock
# Creating lock file # Creating lock file
Create_lockfile .lock Create_lockfile .lock
if ls config/chroot_local-includes/* > /dev/null 2>&1 if ls -A config/chroot_local-includes/ | grep . > /dev/null 2>&1
then then
# Copying includes # Copying includes
cd config/chroot_local-includes cd config/chroot_local-includes