aidevops 2.77.2 → 2.77.3
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 +5 -2
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.77.
|
|
1
|
+
2.77.3
|
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.77.
|
|
6
|
+
# Version: 2.77.3
|
|
7
7
|
#
|
|
8
8
|
# Quick Install (one-liner):
|
|
9
9
|
# bash <(curl -fsSL https://aidevops.dev/install)
|
|
@@ -638,7 +638,10 @@ setup_file_discovery_tools() {
|
|
|
638
638
|
pkg_manager=$(detect_package_manager)
|
|
639
639
|
|
|
640
640
|
if [[ "$pkg_manager" != "unknown" ]]; then
|
|
641
|
-
|
|
641
|
+
local install_fd_tools="y"
|
|
642
|
+
if [[ "$INTERACTIVE_MODE" == "true" ]]; then
|
|
643
|
+
read -r -p "Install file discovery tools (${missing_packages[*]}) using $pkg_manager? (y/n): " install_fd_tools
|
|
644
|
+
fi
|
|
642
645
|
|
|
643
646
|
if [[ "$install_fd_tools" == "y" ]]; then
|
|
644
647
|
print_info "Installing ${missing_packages[*]}..."
|