Overview
| Comment: | Ensure wiki update happens on the correct directory |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
f901bb8bfdb6c0944e0c092885e45537 |
| User & Date: | rkeene on 2020-03-31 18:50:16 |
| Other Links: | manifest | tags |
Context
|
2020-04-01
| ||
| 17:40 | Updated to support uploading the binaries to fossil check-in: fa63935206 user: rkeene tags: trunk | |
|
2020-03-31
| ||
| 18:50 | Ensure wiki update happens on the correct directory check-in: f901bb8bfd user: rkeene tags: trunk | |
| 18:46 | Added AFL test script check-in: 05a7ef3fae user: rkeene tags: trunk | |
Changes
Modified build/update-wiki from [c47eeaaa5c] to [2d105e6f53].
1 2 | #! /bin/bash | > | > | | 1 2 3 4 5 6 7 8 9 10 11 |
#! /bin/bash
sourcedir="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
(
echo '<H2>NAME</H2>'
man2html -H linux.die.net -M /man -p "${sourcedir}/filed.1" | \
sed '0,/<H2>NAME<\/H2>/ d;/<H2>Index<\/H2>/,$ d;s@<A HREF="../index.html">Return to Main Contents</A>@@;s@\[@\[@g;s@\]@\]@g' | \
sed '$ d;/^ *$/ d' | \
sed 's@\(http://linux.die.net/man/[^+]*\)+@\1/@'
) | fossil wiki commit Manual
|