diff options
author | Leah Rowe <leah@libreboot.org> | 2024-06-03 08:25:04 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2024-06-03 08:25:04 +0100 |
commit | 49ae4f91f98f0c118c6666e7132a14b889181bbc (patch) | |
tree | e63525f3a1f4591d2d8691f9077df7c383f3295d | |
parent | 00653aab1ea6d1bc227227da9e2195432f8fe52e (diff) |
badcmd: link directly to the maintenance manual
Signed-off-by: Leah Rowe <leah@libreboot.org>
-rwxr-xr-x | include/lib.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/lib.sh b/include/lib.sh index 8d4b7825..68e36021 100755 --- a/include/lib.sh +++ b/include/lib.sh @@ -20,7 +20,7 @@ badcmd() errmsg="no context given" [ $# -gt 0 ] && errmsg="$1" - dstr="Check $projectname docs via $projectsite" + dstr="See $projectname build system docs: ${projectsite}docs/maintain/" [ -d "docs" ] && dstr="$dstr (local docs available via docs/)" $err "Bad command ($errmsg). $dstr" } |