mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
In cust_install_files() we ignore CVS directories. In a similar way now
also ignore .svn directories.
This commit is contained in:
parent
e80b4d45c0
commit
28b53d8cbd
1 changed files with 1 additions and 1 deletions
|
|
@ -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}
|
||||
)
|
||||
|
||||
#######################################################################
|
||||
|
|
|
|||
Loading…
Reference in a new issue