From 43cc56a01763e6e8e744a6928b93ea89b13b0e8e Mon Sep 17 00:00:00 2001 From: Subhamoy Biswas Date: Fri, 10 Oct 2025 17:19:23 +0530 Subject: [PATCH] fix: deb package asset name typo --- public/linux_installer.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/linux_installer.sh b/public/linux_installer.sh index 73cf48f..8698d26 100644 --- a/public/linux_installer.sh +++ b/public/linux_installer.sh @@ -40,7 +40,7 @@ VERSION=${TAG#v} # Detect package manager and set asset name accordingly 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" INSTALL_CMD="sudo apt install -y" echo "🐧 Detected debian/ubuntu based distro"