mirror of
https://github.com/Cisco-Talos/clamav.git
synced 2025-10-19 10:23:17 +00:00
10 lines
228 B
Bash
10 lines
228 B
Bash
![]() |
#!/bin/sh
|
||
|
# deletes all auto-generated / compiled files
|
||
|
|
||
|
for dir in . doc examples mspack test; do
|
||
|
while read path; do
|
||
|
chmod -R a+rwx $dir/$path 2>/dev/null
|
||
|
rm -vrf $dir/$path
|
||
|
done < $dir/.gitignore
|
||
|
done
|