1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| #! /usr/bin/env bash
version="$1"
cd "$(dirname "$(which "$0")")/.." || exit 1
if [ -z "${version}" ]; then
version="$(cat configure.in | grep AC_INIT | head -1 | sed '[email protected]^AC_INIT([^,]*, *@@;[email protected],.*[email protected]@;[email protected] *)[email protected]@')"
fi
newBody="$(cat tls.htm | sed '/<\/body>/,$ d;0,/<body[ >]/ d' | sed 's/@@[email protected]@/'"${version}"'/g' | grep -iv '^<!doctype')"
oldBody="$(fossil wiki export 'Documentation')"
if [ "${newBody}" != "${oldBody}" ]; then
echo "${newBody}" | fossil wiki commit 'Documentation'
fi
|
|
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| #! /usr/bin/env bash
version="$1"
cd "$(dirname "$(which "$0")")/.." || exit 1
if [ -z "${version}" ]; then
version="$(cat configure.in | grep AC_INIT | head -1 | sed '[email protected]^AC_INIT([^,]*, *@@;[email protected],.*[email protected]@;[email protected] *)[email protected]@')"
fi
newBody="$(cat tls.htm | sed '/<\/body>/,$ d;0,/<body[ >]/ d;/<!--/,/-->/ d' | sed 's/@@[email protected]@/'"${version}"'/g' | grep -iv '^<!doctype')"
oldBody="$(fossil wiki export 'Documentation')"
if [ "${newBody}" != "${oldBody}" ]; then
echo "${newBody}" | fossil wiki commit 'Documentation'
fi
|