forked from Telodendria/Telodendria
Fix a few things that were bothering me.
This commit is contained in:
parent
50aa65617a
commit
cebc2959cc
3 changed files with 3 additions and 3 deletions
2
TODO.txt
2
TODO.txt
|
@ -33,7 +33,7 @@ Milestone: v0.2.0
|
|||
[ ] Document UserInteractiveAuth (move docs from Matrix)
|
||||
|
||||
[ ] Clean up scripts (make tools/lib/matrix.sh)
|
||||
[ ] Scripts to generate index with list of man pages and releases?
|
||||
[x] Scripts to generate index with list of man pages and releases?
|
||||
[x] Update changelog
|
||||
[x] Fix man page links on website
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@ printf "<th>Man Page</th>"
|
|||
printf "<th>Description</th>"
|
||||
printf "</tr>"
|
||||
|
||||
find man -type f -name '*.[1-9]' | while IFS= read -r file; do
|
||||
find man -type f -name '*.[1-9]' | sort -r | while IFS= read -r file; do
|
||||
base=$(basename "$file")
|
||||
|
||||
name=$(echo "$base" | rev | cut -d '.' -f 2- | rev)
|
||||
|
|
|
@ -171,7 +171,7 @@ recipe_site() {
|
|||
DEV_DOCS=$(man-table dev)
|
||||
|
||||
cd site/
|
||||
find . -type f | while IFS= read -r file; do
|
||||
find . -type f -not -path '*/CVS/*' | while IFS= read -r file; do
|
||||
dest="$TELODENDRIA_PUB/$file"
|
||||
dir=$(dirname "$dest")
|
||||
|
||||
|
|
Loading…
Reference in a new issue