513dd8a445
Change-Id: Ie70ab54a63b25649b6b9d30620c5546dc66cd766 Signed-off-by: Galantsev, Dmitrii <dmitrii.galantsev@amd.com>
17 linhas
301 B
Bash
Arquivo Executável
17 linhas
301 B
Bash
Arquivo Executável
#!/usr/bin/env bash
|
|
|
|
# Build manpages using ronn
|
|
|
|
set -eu
|
|
set -o pipefail
|
|
|
|
if ! command -v ronn > /dev/null; then
|
|
echo "ERROR: no ronn found!" >&2
|
|
echo "Please follow installation instructions here:" >&2
|
|
echo "https://github.com/apjanke/ronn-ng" >&2
|
|
exit 1
|
|
fi
|
|
|
|
set -x
|
|
ronn ./README.md
|