From b969bbff9e04b573a7bde42ee98890a5e84cb1f7 Mon Sep 17 00:00:00 2001 From: Aaron Griffin Date: Thu, 19 Jun 2008 18:09:31 -0400 Subject: Make blank lines conditional Mainly for output cleanup Signed-off-by: Aaron Griffin --- misc-scripts/ftpdir-cleanup | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'misc-scripts') 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" -- cgit v1.2.3-24-g4f1b