[core] remove unneeded vars from shellcheck (#3899)

* remove unneeded wars

* Update alpine-wireguard-install.sh

---------

Co-authored-by: Tobias <96661824+CrazyWolf13@users.noreply.github.com>
This commit is contained in:
CanbiZ
2025-04-15 15:20:46 +02:00
committed by GitHub
parent d557d01161
commit 30e8cbf5b4
68 changed files with 301 additions and 307 deletions

View File

@@ -61,7 +61,7 @@ if [[ "$INSTALL_WGD" =~ ^[Yy]$ ]]; then
msg_ok "Installed additional dependencies for WGDashboard"
msg_info "Installing WGDashboard"
git clone -q https://github.com/donaldzou/WGDashboard.git /etc/wgdashboard
cd /etc/wgdashboard/src || exit
cd /etc/wgdashboard/src
chmod u+x wgd.sh
$STD ./wgd.sh install
msg_ok "Installed WGDashboard"
@@ -79,7 +79,7 @@ depend() {
start() {
ebegin "Starting WGDashboard"
cd /etc/wgdashboard/src/ || exit 1
cd /etc/wgdashboard/src/
./wgd.sh start &
eend $?
}