Merge pull request #1012 from 0xJacky/dev

chore: update install.sh
This commit is contained in:
Jacky 2025-05-07 11:41:26 +08:00 committed by GitHub
commit 7718718c89
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -272,6 +272,11 @@ decompression() {
install_bin() {
NAME="nginx-ui"
if [[ ! -d "/usr/local/bin" ]]; then
mkdir -p "/usr/local/bin"
fi
install -m 755 "${TMP_DIRECTORY}/$NAME" "/usr/local/bin/$NAME"
}