summaryrefslogtreecommitdiff
path: root/bin/pkg
diff options
context:
space:
mode:
Diffstat (limited to 'bin/pkg')
-rwxr-xr-xbin/pkg4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/pkg b/bin/pkg
index 7400fdf..cb3e144 100755
--- a/bin/pkg
+++ b/bin/pkg
@@ -487,7 +487,7 @@ function populate_collected {
section=${i:h:t}
manpage=${i:t}
if (podchecker man/$section/$manpage &> /dev/null) {
- pod2man -s $section -c "$1 package" -r $HOME man/$section/$manpage > $PDIR/.collected/man/man$section/$manpage.$section
+ pod2man -u -s $section -c "$1 package" -r $HOME man/$section/$manpage > $PDIR/.collected/man/man$section/$manpage.$section
say -n "+"
(( mans++ ))
} else {
@@ -499,7 +499,7 @@ function populate_collected {
if [[ -d bin ]] {
for i in bin/*; {
if (podchecker $i &> /dev/null) {
- pod2man $i > $PDIR/.collected/man/man1/${i:t}.1
+ pod2man -u $i > $PDIR/.collected/man/man1/${i:t}.1
say -n "+"
(( bins++ ))
} else {