aidevops 3.8.85 → 3.8.88
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 -1
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.8.
|
|
1
|
+
3.8.88
|
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.8.
|
|
15
|
+
# Version: 3.8.88
|
|
16
16
|
#
|
|
17
17
|
# Quick Install:
|
|
18
18
|
# npm install -g aidevops && aidevops update (recommended)
|
|
@@ -1294,6 +1294,15 @@ main() {
|
|
|
1294
1294
|
|
|
1295
1295
|
_setup_post_setup_steps "$_os"
|
|
1296
1296
|
|
|
1297
|
+
# t2579: restart pulse if running, so newly-deployed scripts take effect.
|
|
1298
|
+
# No-op if pulse is not running, or if AIDEVOPS_SKIP_PULSE_RESTART=1.
|
|
1299
|
+
# Uses the deployed helper (not the repo-local one) so the restart runs
|
|
1300
|
+
# against the agents directory setup.sh just populated.
|
|
1301
|
+
local _pulse_helper="${HOME}/.aidevops/agents/scripts/pulse-lifecycle-helper.sh"
|
|
1302
|
+
if [[ -x "$_pulse_helper" ]]; then
|
|
1303
|
+
"$_pulse_helper" restart-if-running || print_warning "Pulse restart failed (non-fatal)"
|
|
1304
|
+
fi
|
|
1305
|
+
|
|
1297
1306
|
# GH#18492 / t2026: completion sentinel. Must be the last output of a
|
|
1298
1307
|
# successful run — any silent early-termination will leave this absent
|
|
1299
1308
|
# from the log. Consumed by .agents/scripts/verify-setup-log.sh and
|