pkg-auto: Strip only one space when printing help

This commit is contained in:
Krzesimir Nowak 2025-02-20 09:25:37 +01:00
parent 3a106bb87e
commit a75a5ed7bf

View File

@ -141,7 +141,7 @@ function yell() {
# hashes in the top sourcer of this file.
function print_help() {
if [[ ${THIS} != "${BASH}" ]]; then
grep '^##' "${THIS}" | sed -e 's/##[[:space:]]*//'
grep '^##' "${THIS}" | sed -e 's/##[[:space:]]\?//'
fi
}