aidevops 2.90.7 → 2.90.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/VERSION +1 -1
- package/aidevops.sh +1 -1
- package/package.json +1 -1
- package/setup.sh +10 -7
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.90.
|
|
1
|
+
2.90.8
|
package/aidevops.sh
CHANGED
package/package.json
CHANGED
package/setup.sh
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
# AI Assistant Server Access Framework Setup Script
|
|
4
4
|
# Helps developers set up the framework for their infrastructure
|
|
5
5
|
#
|
|
6
|
-
# Version: 2.90.
|
|
6
|
+
# Version: 2.90.8
|
|
7
7
|
#
|
|
8
8
|
# Quick Install (one-liner):
|
|
9
9
|
# bash <(curl -fsSL https://aidevops.dev/install)
|
|
@@ -731,15 +731,18 @@ setup_file_discovery_tools() {
|
|
|
731
731
|
local missing_packages=()
|
|
732
732
|
local missing_names=()
|
|
733
733
|
|
|
734
|
-
|
|
735
|
-
if
|
|
734
|
+
local fd_version
|
|
735
|
+
if command -v fd >/dev/null 2>&1; then
|
|
736
|
+
fd_version=$(fd --version 2>/dev/null | head -1 || echo "unknown")
|
|
737
|
+
print_success "fd found: $fd_version"
|
|
738
|
+
elif command -v fdfind >/dev/null 2>&1; then
|
|
739
|
+
fd_version=$(fdfind --version 2>/dev/null | head -1 || echo "unknown")
|
|
740
|
+
print_success "fd found (as fdfind): $fd_version"
|
|
741
|
+
print_warning "Note: 'fd' alias not active in current shell. Restart shell or run: alias fd=fdfind"
|
|
742
|
+
else
|
|
736
743
|
missing_tools+=("fd")
|
|
737
744
|
missing_packages+=("fd")
|
|
738
745
|
missing_names+=("fd (fast file finder)")
|
|
739
|
-
else
|
|
740
|
-
local fd_version
|
|
741
|
-
fd_version=$(fd --version 2>/dev/null | head -1 || echo "unknown")
|
|
742
|
-
print_success "fd found: $fd_version"
|
|
743
746
|
fi
|
|
744
747
|
|
|
745
748
|
# Check for ripgrep
|