Artifact 28c69470f7390f740b50eb27d88ea28faa58a4f2:
- Executable file build/update-wiki-docs — part of check-in [b297166a47] at 2016-12-08 04:23:04 on branch tls-1-7 — Added script to update documentation (user: rkeene, size: 494) [annotate] [blame] [check-ins using]
#! /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 's@^AC_INIT([^,]*, *@@;s@,.*$@@;s@ *)$@@')" fi newBody="$(cat tls.htm | sed '/<\/body>/,$ d;0,/<body[ >]/ d' | sed 's/@@VERS@@/'"${version}"'/g' | grep -iv '^<!doctype')" oldBody="$(fossil wiki export 'Documentation')" if [ "${newBody}" != "${oldBody}" ]; then echo "${newBody}" | fossil wiki commit 'Documentation' fi