diff options
-rwxr-xr-x | misc-scripts/ftpdir-cleanup | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/misc-scripts/ftpdir-cleanup b/misc-scripts/ftpdir-cleanup index 6cbb893..e44dd92 100755 --- a/misc-scripts/ftpdir-cleanup +++ b/misc-scripts/ftpdir-cleanup @@ -94,15 +94,17 @@ if [ -n "$DELETEFILES" ]; then for f in $DELETEFILES; do echo " $f" done + echo "" fi -echo "" + if [ -n "$MISSINGFILES" ]; then echo " The following files are missing in the repo" for f in $MISSINGFILES; do echo " $f" done + echo "" fi -echo "" + if [ -n "$EXTRAFILES" ]; then echo " The following files are in the repo but not the db" echo " They will be moved to /home/package-cleanup" |