From 2c9dd173bc4b21664c84572bab0cd0091c523427 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Sat, 7 Jun 2008 15:07:18 +0200 Subject: bin/pkg: populate_collected: Show wheter a file contained docs or not --- bin/pkg | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'bin/pkg') diff --git a/bin/pkg b/bin/pkg index 908096a..79831ef 100755 --- a/bin/pkg +++ b/bin/pkg @@ -161,16 +161,20 @@ populate_collected () { for i in doc/*; { if (podchecker $i &> /dev/null) { pod2man -c "$1 Documentation" -r "" $i > $PDIR/.collected/man/man1/$(basename $i).1 + echo -n "+" + } else { + echo -n "." } - echo -n "." } } if ([ -d bin ]) { for i in bin/*; { if (podchecker $i &> /dev/null) { pod2man $i > $PDIR/.collected/man/man1/$(basename $i).1 + echo -n "+" + } else { + echo -n "." } - echo -n "." } } clear_line -- cgit v1.2.3