From 635f73d052a9f4abdc73bb006517d5222f630ebe Mon Sep 17 00:00:00 2001 From: allan Date: Sun, 2 Nov 2025 11:40:32 +0000 Subject: [PATCH] check if curl is available --- dokuwikiinstall | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dokuwikiinstall b/dokuwikiinstall index ee47a9e..a01273a 100755 --- a/dokuwikiinstall +++ b/dokuwikiinstall @@ -63,9 +63,9 @@ clear inputcheck "$hostname" # -# Ensure curl, unzip and wget are available +# Ensure curl is available # -for tool in curl unzip wget; do dpkg -s "$tool" &>/dev/null || apt install -y -qq "$tool" ; done +for tool in curl unzip wget; do dpkg -s "$tool" &>/dev/null || apt install -y "$tool" ; done # # Clone nginx-snippets; if nginx-snippets exists then just pull latest changes