commit e99aa8c

wf  ·  2026-08-18 09:58:16 +0000 UTC
parent 0cf5d5a
Make sure brssl is installed
2 files changed,  +6, -1
M README
M glub
M README
+1, -1
1@@ -9,7 +9,7 @@ glub
2 Dependencies
3 ------------
4 
5- mksh, stty, date, brssl (or any other SSL client).
6+ mksh, stty, date, brssl.
7 
8 TODO
9 ----
M glub
+5, -0
 1@@ -317,6 +317,11 @@ EOF
 2 	esac
 3 }
 4 
 5+command -v brssl &>/dev/null || {
 6+	print -u2 "brssl not found, exiting"
 7+	exit 1
 8+}
 9+
10 while getopts :hs:p:u:n:r:c:U:P: arg; do case "$arg" in
11 	'h') help; exit 0 ;;
12 	's') srv="$OPTARG" ;;