aidevops 2.138.0 → 2.139.1
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 +7 -1
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.
|
|
1
|
+
2.139.1
|
package/aidevops.sh
CHANGED
package/package.json
CHANGED
package/setup.sh
CHANGED
|
@@ -10,7 +10,7 @@ shopt -s inherit_errexit 2>/dev/null || true
|
|
|
10
10
|
# AI Assistant Server Access Framework Setup Script
|
|
11
11
|
# Helps developers set up the framework for their infrastructure
|
|
12
12
|
#
|
|
13
|
-
# Version: 2.
|
|
13
|
+
# Version: 2.139.1
|
|
14
14
|
#
|
|
15
15
|
# Quick Install:
|
|
16
16
|
# npm install -g aidevops && aidevops update (recommended)
|
|
@@ -500,6 +500,12 @@ main() {
|
|
|
500
500
|
|
|
501
501
|
parse_args "$@"
|
|
502
502
|
|
|
503
|
+
# Auto-detect non-interactive terminals (CI/CD, agent shells, piped stdin)
|
|
504
|
+
# Must run after parse_args so explicit --interactive flag takes precedence
|
|
505
|
+
if [[ "$INTERACTIVE_MODE" != "true" && ! -t 0 ]]; then
|
|
506
|
+
NON_INTERACTIVE=true
|
|
507
|
+
fi
|
|
508
|
+
|
|
503
509
|
# Guard: --interactive and --non-interactive are mutually exclusive
|
|
504
510
|
if [[ "$INTERACTIVE_MODE" == "true" && "$NON_INTERACTIVE" == "true" ]]; then
|
|
505
511
|
print_error "--interactive and --non-interactive cannot be used together"
|