pmt: initial 2.8.0 update

This commit is contained in:
2024-09-10 06:17:41 +03:00
parent ec5a2b97b9
commit 595f3b00b3
49 changed files with 2470 additions and 1793 deletions

View File

@@ -16,8 +16,8 @@
function abort()
{
[ -n "${1}" ] \
&& echo -e " - ${RED}${BOLD}Error:${BOLD_RESET}${RESET} ${1}"
[ -n "${@}" ] \
&& echo -e " - ${RED}${BOLD}Error:${BOLD_RESET}${RESET} ${@}"
exit 1
}
@@ -34,4 +34,4 @@ function gen()
touch "${1}" || abort "failed to generate: ${1}"
}
function print() { echo -e "${1}"; }
function print() { echo -e "${@}"; }