fix: add abra path and autocompletion to interactive shell init

This commit is contained in:
2025-08-19 17:42:31 +02:00
parent 1cc2c3f680
commit 19c18db5f0

View File

@@ -429,9 +429,15 @@ isoConfig // {
fi fi
fi fi
# Ensure /root/.local/bin is in PATH (safety net)
if [[ ":$PATH:" != *":/root/.local/bin:"* ]]; then
export PATH="$PATH:/root/.local/bin"
fi
# Check abra installation # Check abra installation
if command -v abra >/dev/null 2>&1; then if command -v abra >/dev/null 2>&1; then
echo " abra ready: $(which abra)" echo " abra ready: $(which abra)"
source <(abra autocomplete bash) 2>/dev/null || true
else else
echo " abra not found! Check: systemctl status workshop-abra-install" echo " abra not found! Check: systemctl status workshop-abra-install"
fi fi