aidevops 2.140.0 → 2.142.0
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 +6 -1
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.
|
|
1
|
+
2.142.0
|
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.142.0
|
|
14
14
|
#
|
|
15
15
|
# Quick Install:
|
|
16
16
|
# npm install -g aidevops && aidevops update (recommended)
|
|
@@ -29,6 +29,11 @@ CLEAN_MODE=false
|
|
|
29
29
|
INTERACTIVE_MODE=false
|
|
30
30
|
NON_INTERACTIVE="${AIDEVOPS_NON_INTERACTIVE:-false}"
|
|
31
31
|
UPDATE_TOOLS_MODE=false
|
|
32
|
+
# Platform constants (used across all setup modules)
|
|
33
|
+
PLATFORM_MACOS=$([[ "$(uname -s)" == "Darwin" ]] && echo true || echo false)
|
|
34
|
+
PLATFORM_LINUX=$([[ "$(uname -s)" == "Linux" ]] && echo true || echo false)
|
|
35
|
+
PLATFORM_ARM64=$([[ "$(uname -m)" == "arm64" || "$(uname -m)" == "aarch64" ]] && echo true || echo false)
|
|
36
|
+
readonly PLATFORM_MACOS PLATFORM_LINUX PLATFORM_ARM64
|
|
32
37
|
# shellcheck disable=SC2034 # Used by sourced modules (setup-modules/core.sh, agent-deploy.sh)
|
|
33
38
|
REPO_URL="https://github.com/marcusquinn/aidevops.git"
|
|
34
39
|
# shellcheck disable=SC2034 # Used by sourced modules (setup-modules/core.sh, agent-deploy.sh)
|