aidevops 3.1.291 → 3.1.295
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-modules/migrations.sh +4 -3
- package/setup.sh +1 -1
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.1.
|
|
1
|
+
3.1.295
|
package/aidevops.sh
CHANGED
package/package.json
CHANGED
|
@@ -1088,13 +1088,14 @@ migrate_pulse_repos_to_repos_json() {
|
|
|
1088
1088
|
fi
|
|
1089
1089
|
|
|
1090
1090
|
local migrated=0
|
|
1091
|
-
local slug
|
|
1091
|
+
local slug repo_path priority
|
|
1092
1092
|
|
|
1093
1093
|
# Read each entry from pulse-repos.json and merge into repos.json
|
|
1094
|
-
|
|
1094
|
+
# Note: avoid 'path' as variable name — in zsh, lowercase 'path' is tied to PATH array
|
|
1095
|
+
while IFS=$'\t' read -r slug repo_path priority; do
|
|
1095
1096
|
[[ -z "$slug" ]] && continue
|
|
1096
1097
|
# Expand ~ in path
|
|
1097
|
-
local expanded_path="${
|
|
1098
|
+
local expanded_path="${repo_path/#\~/$HOME}"
|
|
1098
1099
|
|
|
1099
1100
|
# Check if this repo exists in repos.json by path
|
|
1100
1101
|
if jq -e --arg path "$expanded_path" '.initialized_repos[] | select(.path == $path)' "$repos_file" &>/dev/null; then
|
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.295
|
|
14
14
|
#
|
|
15
15
|
# Quick Install:
|
|
16
16
|
# npm install -g aidevops && aidevops update (recommended)
|