From 28b53d8cbdce31f5058ee49f7d5c79e86aaf4fb7 Mon Sep 17 00:00:00 2001 From: "Simon L. B. Nielsen" Date: Tue, 23 Sep 2008 18:54:56 +0000 Subject: [PATCH] In cust_install_files() we ignore CVS directories. In a similar way now also ignore .svn directories. --- tools/tools/nanobsd/nanobsd.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/tools/nanobsd/nanobsd.sh b/tools/tools/nanobsd/nanobsd.sh index ba206e90b57..3556cdd5bc7 100644 --- a/tools/tools/nanobsd/nanobsd.sh +++ b/tools/tools/nanobsd/nanobsd.sh @@ -582,7 +582,7 @@ cust_allow_ssh_root () ( cust_install_files () ( cd ${NANO_TOOLS}/Files - find . -print | grep -v /CVS | cpio -dumpv ${NANO_WORLDDIR} + find . -print | grep -Ev '/(CVS|\.svn)' | cpio -dumpv ${NANO_WORLDDIR} ) #######################################################################