1
1
mirror of https://github.com/neosubhamoy/neodlp-website.git synced 2026-02-04 12:22:21 +05:30

fix: deb package asset name typo

This commit is contained in:
2025-10-10 17:19:23 +05:30
Verified
parent 0e1dc222bc
commit 43cc56a017

View File

@@ -40,7 +40,7 @@ VERSION=${TAG#v}
# Detect package manager and set asset name accordingly # Detect package manager and set asset name accordingly
if command -v apt &> /dev/null; then if command -v apt &> /dev/null; then
ASSET_NAME="NeoDLP_$VERSION}_$([[ "$ASSET_ARCH" == "x64" ]] && echo "amd64" || echo "arm64").deb" ASSET_NAME="NeoDLP_${VERSION}_$([[ "$ASSET_ARCH" == "x64" ]] && echo "amd64" || echo "arm64").deb"
PKG_MANAGER="apt" PKG_MANAGER="apt"
INSTALL_CMD="sudo apt install -y" INSTALL_CMD="sudo apt install -y"
echo "🐧 Detected debian/ubuntu based distro" echo "🐧 Detected debian/ubuntu based distro"