fix: address missing bin auto-exit issue

This commit is contained in:
ramvignesh-b
2026-04-24 03:48:12 +05:30
parent 3111e14732
commit b49dc69a25
2 changed files with 7 additions and 7 deletions
+3 -3
View File
@@ -1,9 +1,9 @@
#!/bin/bash
set -e
NODE_BIN=$(command -v bun || command -v npm)
PY_BIN=$(command -v uv || command -v pip)
DISTRO_BIN=$(command -v apt || command -v yum || command -v pacman || command -v zypper)
NODE_BIN=$(command -v bun || command -v npm || true)
PY_BIN=$(command -v uv || command -v pip || true)
DISTRO_BIN=$(command -v apt || command -v yum || command -v pacman || command -v zypper || true)
echo "[Backend] Installing Backend Packages..."
if [ $(basename "$PY_BIN") = "pip" ]; then