From e659b4495a264aa4c2f0fb952c6d84e5e411f30c Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Tue, 25 Mar 2025 14:03:57 +0100 Subject: [PATCH] Update alpine-wireguard-install.sh --- install/alpine-wireguard-install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install/alpine-wireguard-install.sh b/install/alpine-wireguard-install.sh index b515c18..f5ef142 100644 --- a/install/alpine-wireguard-install.sh +++ b/install/alpine-wireguard-install.sh @@ -26,13 +26,13 @@ $STD apk add \ msg_ok "Installed Dependencies" msg_info "Installing WireGuard" -apk add --no-cache wireguard-tools +$STD apk add --no-cache wireguard-tools msg_ok "Installed WireGuard" read -rp "Do you want to install WGDashboard? (y/N): " INSTALL_WGD if [[ "$INSTALL_WGD" =~ ^[Yy]$ ]]; then msg_info "Installing additional dependencies for WGDashboard" - apk add --no-cache \ + $STD apk add --no-cache \ python3 \ py3-pip \ git \