address issue where uninstalling an empty package will erase all code in src

This commit is contained in:
Axel Kohlmeyer 2017-04-06 11:08:57 -04:00
parent 6f1bbd3cec
commit 1725832b6c
1 changed files with 1 additions and 1 deletions

View File

@ -33,5 +33,5 @@ action () {
# all package files with no dependencies
for file in *.cpp *.h; do
action $file
test -f ${file} && action $file
done