Codebase list openms / 68f01b5
Added some files. Filippo Rusconi (Uploading Debian Developer) 3 years ago
1 changed file(s) with 6 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
44 # Remove all unwanted files/dirs.
55 echo "Now removing the whole contrib directory"
66 find . -name "contrib" -type d -exec rm -rfv '{}' \; > /dev/null 2>&1
7
8 echo "Now removing the whole cmake/Windows directory"
9 find . -name "cmake/Windows" -type d -exec rm -rfv '{}' \; > /dev/null 2>&1
710
811 echo "Now removing all the .exe files"
912 find . -name "*.exe" -type f -exec rm -rvf '{}' \;
2023 echo "Now removing all the doxygen-based html/* file"
2124 rm -rfv doc/html/*
2225
26 echo "Now removing travis files."
27 rm -rfv .travis.yml
28
2329 # Remove all the exec bits from files that $(file) considers not
2430 # binary.
2531 for item in $(find -type f -executable)