bin/setup-man

Mon, 14 Oct 2019 17:14:16 -0500

author
Meredith Howard <mhoward@roomag.org>
date
Mon, 14 Oct 2019 17:14:16 -0500
changeset 798
d690f45fd713
parent 756
8bc91181db9d
permissions
-rwxr-xr-x

simplify - there's no need to handle other branches or moves in this

#!/bin/sh
set -eu

cd $(hg root)

SOURCES="${@:-$(hg stat -Aqn -I 'bin/*')}"
MAN1=".man/man1"

mkdir -p $MAN1 || true

for SRC in $(grep -El '^=(head|cut)' $SOURCES); do
  DST="${MAN1}/$(basename $SRC).1"
  if [ ! -f $DST ] || [ "$SRC" -nt "$SRC" ]; then
    pod2man -v --errors=stderr "$SRC" "$DST"
  fi
done

mercurial