[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
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
68 changed files with 301 additions and 307 deletions

View file

@ -52,7 +52,7 @@ function update_script() {
msg_info "Downloading NPM v${RELEASE}"
curl -fsSL "https://codeload.github.com/NginxProxyManager/nginx-proxy-manager/tar.gz/v${RELEASE}" | tar -xz
cd nginx-proxy-manager-"${RELEASE}" || exit
cd nginx-proxy-manager-"${RELEASE}"
msg_ok "Downloaded NPM v${RELEASE}"
msg_info "Setting up Enviroment"
@ -103,7 +103,7 @@ function update_script() {
msg_ok "Setup Enviroment"
msg_info "Building Frontend"
cd ./frontend || exit
cd ./frontend
$STD pnpm install
$STD pnpm upgrade
$STD pnpm run build
@ -128,7 +128,7 @@ function update_script() {
}
EOF
fi
cd /app || exit
cd /app
$STD pnpm install
msg_ok "Initialized Backend"