1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
vcftools - changes to source tree
=================================
A series of files and directories needed to be removed - nothing dramatic:
$ find . -name ".svn"
./website/img/.svn
./website/src/.svn
./website/.svn
./cpp/.svn
./examples/.svn
./perl/.svn
$ find . -name ".svn" | xargs -r rm -r
$ find . -name "*.pdf"
./website/VCF-poster.pdf
$ find . -name "*.pdf" | xargs -r rm
Also, the source tree has now the version number attached with a hyphen
instead of an underscore.
|