aidevops 3.14.6 → 3.14.7
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 +3 -3
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.14.
|
|
1
|
+
3.14.7
|
package/aidevops.sh
CHANGED
package/package.json
CHANGED
package/setup.sh
CHANGED
|
@@ -12,7 +12,7 @@ shopt -s inherit_errexit 2>/dev/null || true
|
|
|
12
12
|
# AI Assistant Server Access Framework Setup Script
|
|
13
13
|
# Helps developers set up the framework for their infrastructure
|
|
14
14
|
#
|
|
15
|
-
# Version: 3.14.
|
|
15
|
+
# Version: 3.14.7
|
|
16
16
|
#
|
|
17
17
|
# Quick Install:
|
|
18
18
|
# npm install -g aidevops && aidevops update (recommended)
|
|
@@ -650,7 +650,7 @@ _setup_lock_started_age_seconds() {
|
|
|
650
650
|
if [[ -r "$lock_dir/started_at" ]]; then
|
|
651
651
|
started_str=$(tr -d '[:space:]' <"$lock_dir/started_at" 2>/dev/null || true)
|
|
652
652
|
started_epoch=$(date -d "$started_str" +%s 2>/dev/null || \
|
|
653
|
-
date -jf '%Y-%m-%dT%H:%M:%SZ' "$started_str" +%s 2>/dev/null || true)
|
|
653
|
+
date -u -jf '%Y-%m-%dT%H:%M:%SZ' "$started_str" +%s 2>/dev/null || true)
|
|
654
654
|
now_epoch=$(date +%s 2>/dev/null || true)
|
|
655
655
|
if [[ "$started_epoch" =~ ^[0-9]+$ && "$now_epoch" =~ ^[0-9]+$ && "$now_epoch" -ge "$started_epoch" ]]; then
|
|
656
656
|
printf '%s\n' $((now_epoch - started_epoch))
|
|
@@ -1048,7 +1048,7 @@ _setup_run_non_interactive() {
|
|
|
1048
1048
|
# Use the bounded wrapper so a slow file-system traversal across many agent
|
|
1049
1049
|
# files does not consume the remaining postflight budget and trip the outer
|
|
1050
1050
|
# timeout (GH#22087). AIDEVOPS_DEPLOY_RUNTIMES_TIMEOUT controls the deadline.
|
|
1051
|
-
_time_step "deploy_agents_to_runtimes" _deploy_agents_to_runtimes_bounded
|
|
1051
|
+
_time_step "deploy_agents_to_runtimes" _deploy_agents_to_runtimes_bounded || true
|
|
1052
1052
|
_time_step "update_opencode_config" _setup_run_noncritical_stage_bounded "OpenCode config update" "${AIDEVOPS_UPDATE_OPENCODE_CONFIG_TIMEOUT:-60}" update_opencode_config
|
|
1053
1053
|
_time_step "update_claude_config" update_claude_config
|
|
1054
1054
|
_time_step "update_codex_config" update_codex_config
|