From 0c13b19e9dcfef7486e2042b2e04cb37d976106f Mon Sep 17 00:00:00 2001 From: Gilles Mouchet Date: Mon, 27 Apr 2026 09:49:57 +0200 Subject: [PATCH] fix create path /opt/own-pki/lib --- bin/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/install.sh b/bin/install.sh index e020317..069413b 100755 --- a/bin/install.sh +++ b/bin/install.sh @@ -65,7 +65,7 @@ main(){ # create paths for environment own-pki echo -n -e "Create path $BIN_PATH/lib: " if [ ! -d "$BIN_PATH/lib" ]; then - mkdir -p "$BIN_PATH" 2>/dev/null + mkdir -p "$BIN_PATH/lib" 2>/dev/null check_rc $? else msg_warn "$BIN_PATH already exists!"