reverted the change to .html in generating the reference, since I have

fooled myself ...
This commit is contained in:
Daniel Heule 2014-03-20 19:04:09 +01:00
parent b5b1a25e4f
commit e1766aa070
1 changed files with 3 additions and 3 deletions

View File

@ -159,12 +159,12 @@ The following types are available:
eof
for type in man7/cdist-type__*.html; do
for type in man7/cdist-type__*.text; do
no_dir="${type#man7/}";
no_type="${no_dir#cdist-type}";
name="${no_type%.html}";
name="${no_type%.text}";
name_no_underline="$(echo $name | sed 's/^__/\\__/g')"
man="${no_dir%.html}(7)"
man="${no_dir%.text}(7)"
echo "- $name_no_underline" "($man)"
done