aidevops 2.65.0 → 2.66.0
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/README.md +1 -1
- package/VERSION +1 -1
- package/aidevops.sh +1 -1
- package/package.json +1 -1
- package/setup.sh +23 -4
package/README.md
CHANGED
|
@@ -57,7 +57,7 @@ The result: AI agents that work *with* your development process, not around it.
|
|
|
57
57
|
[](https://github.com/marcusquinn/aidevops/commits/main)
|
|
58
58
|
|
|
59
59
|
<!-- Repository Stats -->
|
|
60
|
-
[](https://github.com/marcusquinn/aidevops/releases)
|
|
61
61
|
[](https://github.com/marcusquinn/aidevops)
|
|
62
62
|
[](https://github.com/marcusquinn/aidevops)
|
|
63
63
|
[](https://github.com/marcusquinn/aidevops)
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.
|
|
1
|
+
2.66.0
|
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.
|
|
6
|
+
# Version: 2.66.0
|
|
7
7
|
#
|
|
8
8
|
# Quick Install (one-liner):
|
|
9
9
|
# bash <(curl -fsSL https://aidevops.dev/install)
|
|
@@ -633,10 +633,29 @@ setup_file_discovery_tools() {
|
|
|
633
633
|
if install_packages "$pkg_manager" "${actual_packages[@]}"; then
|
|
634
634
|
print_success "File discovery tools installed"
|
|
635
635
|
|
|
636
|
-
# On Debian/Ubuntu, fd is installed as fdfind - create alias
|
|
636
|
+
# On Debian/Ubuntu, fd is installed as fdfind - create alias in all existing shell rc files
|
|
637
637
|
if [[ "$pkg_manager" == "apt" ]] && command -v fdfind >/dev/null 2>&1 && ! command -v fd >/dev/null 2>&1; then
|
|
638
|
-
|
|
639
|
-
|
|
638
|
+
local rc_files=("$HOME/.bashrc" "$HOME/.zshrc")
|
|
639
|
+
local added_to=""
|
|
640
|
+
|
|
641
|
+
for rc_file in "${rc_files[@]}"; do
|
|
642
|
+
[[ ! -f "$rc_file" ]] && continue
|
|
643
|
+
|
|
644
|
+
if ! grep -q 'alias fd="fdfind"' "$rc_file" 2>/dev/null; then
|
|
645
|
+
if { echo '' >> "$rc_file" && \
|
|
646
|
+
echo '# fd-find alias for Debian/Ubuntu (added by aidevops)' >> "$rc_file" && \
|
|
647
|
+
echo 'alias fd="fdfind"' >> "$rc_file"; }; then
|
|
648
|
+
added_to="${added_to:+$added_to, }$rc_file"
|
|
649
|
+
fi
|
|
650
|
+
fi
|
|
651
|
+
done
|
|
652
|
+
|
|
653
|
+
if [[ -n "$added_to" ]]; then
|
|
654
|
+
print_success "Added alias fd=fdfind to: $added_to"
|
|
655
|
+
echo " Restart your shell to activate"
|
|
656
|
+
else
|
|
657
|
+
print_success "fd alias already configured"
|
|
658
|
+
fi
|
|
640
659
|
fi
|
|
641
660
|
else
|
|
642
661
|
print_warning "Failed to install some file discovery tools (non-critical)"
|