hbbs

bbs.hlirc.net
Log | Files | Refs | README | LICENSE

commit ae356624b38a6933c5370eb89a956741976b368c
parent d5217498e2fef7293c9211d48fe396c5f99e1cb4
Author: hhvn <hayden@haydenvh.com>
Date:   Tue,  2 Feb 2021 13:24:42 +0000

include/common.sh: die function can handle multiple word arguments

Diffstat:
Minclude/common.sh | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/common.sh b/include/common.sh @@ -8,7 +8,7 @@ bin(){ } die(){ - error $1 + error "$@" exit 1 }