Also ignore files from Murcirial (.hg) and git (.git) when copying
file trees.
This commit is contained in:
parent
b434acb306
commit
9329931e3f
@ -436,7 +436,7 @@ populate_slice ( ) (
|
||||
if [ -n "${dir}" -a -d "${dir}" ]; then
|
||||
echo "Populating ${lbl} from ${dir}"
|
||||
cd ${dir}
|
||||
find . -print | grep -Ev '/(CVS|\.svn)' | cpio -dumpv ${mnt}
|
||||
find . -print | grep -Ev '/(CVS|\.svn|\.hg|\.git)' | cpio -dumpv ${mnt}
|
||||
fi
|
||||
df -i ${mnt}
|
||||
umount ${mnt}
|
||||
@ -705,7 +705,7 @@ cust_allow_ssh_root () (
|
||||
|
||||
cust_install_files () (
|
||||
cd ${NANO_TOOLS}/Files
|
||||
find . -print | grep -Ev '/(CVS|\.svn)' | cpio -Ldumpv ${NANO_WORLDDIR}
|
||||
find . -print | grep -Ev '/(CVS|\.svn|\.hg|\.git)' | cpio -Ldumpv ${NANO_WORLDDIR}
|
||||
)
|
||||
|
||||
#######################################################################
|
||||
|
Loading…
Reference in New Issue
Block a user