0152763a39
Change-Id: I665cc5a48a240f0d2289439a4877c9f667b19851
Signed-off-by: Galantsev, Dmitrii <dmitrii.galantsev@amd.com>
[ROCm/rocm_smi_lib commit: 275108f5b9]
17 строки
301 B
Bash
Исполняемый файл
17 строки
301 B
Bash
Исполняемый файл
#!/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
|