aidevops 3.1.40 → 3.1.41
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 +4 -3
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.1.
|
|
1
|
+
3.1.41
|
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: 3.1.
|
|
13
|
+
# Version: 3.1.41
|
|
14
14
|
#
|
|
15
15
|
# Quick Install:
|
|
16
16
|
# npm install -g aidevops && aidevops update (recommended)
|
|
@@ -1534,9 +1534,10 @@ ST_PLIST
|
|
|
1534
1534
|
fi
|
|
1535
1535
|
|
|
1536
1536
|
# Profile README auto-update scheduled job.
|
|
1537
|
-
#
|
|
1537
|
+
# Installed whenever gh CLI is available — the update script self-heals
|
|
1538
|
+
# (discovers/creates the profile repo on first run via _resolve_profile_repo).
|
|
1538
1539
|
# macOS: launchd plist (hourly) | Linux: cron (hourly)
|
|
1539
|
-
if [[ -x "$pr_script" ]] &&
|
|
1540
|
+
if [[ -x "$pr_script" ]] && command -v gh &>/dev/null; then
|
|
1540
1541
|
mkdir -p "$HOME/.aidevops/.agent-workspace/logs"
|
|
1541
1542
|
|
|
1542
1543
|
if [[ "$(uname -s)" == "Darwin" ]]; then
|