README - Clean-up cli readme
Change-Id: I665cc5a48a240f0d2289439a4877c9f667b19851 Signed-off-by: Galantsev, Dmitrii <dmitrii.galantsev@amd.com>
This commit is contained in:
Executable
+16
@@ -0,0 +1,16 @@
|
||||
#!/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
|
||||
Reference in New Issue
Block a user