summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorsimon <simon@FreeBSD.org>2008-09-23 18:54:56 +0000
committersimon <simon@FreeBSD.org>2008-09-23 18:54:56 +0000
commitb416ba242b0c48dc694985c9a6fe61cde9054ea1 (patch)
tree37f150c7831dd9daa28bf0775183c35ed9e7d3f1 /tools
parentcb0445a846310e7186868134b78da438f9d7c5a1 (diff)
downloadFreeBSD-src-b416ba242b0c48dc694985c9a6fe61cde9054ea1.zip
FreeBSD-src-b416ba242b0c48dc694985c9a6fe61cde9054ea1.tar.gz
In cust_install_files() we ignore CVS directories. In a similar way now
also ignore .svn directories.
Diffstat (limited to 'tools')
-rw-r--r--tools/tools/nanobsd/nanobsd.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/tools/nanobsd/nanobsd.sh b/tools/tools/nanobsd/nanobsd.sh
index ba206e9..3556cdd 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}
)
#######################################################################
OpenPOWER on IntegriCloud