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