gaia-framework 1.1.6 → 1.1.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/README.md CHANGED
@@ -555,7 +555,7 @@ The single source of truth for project settings at `_gaia/_config/global.yaml`:
555
555
 
556
556
  ```yaml
557
557
  framework_name: "GAIA"
558
- framework_version: "1.1.6"
558
+ framework_version: "1.1.7"
559
559
 
560
560
  user_name: "your-name"
561
561
  project_name: "your-project"
package/gaia-install.sh CHANGED
@@ -6,7 +6,7 @@ set -euo pipefail
6
6
  # Installs, updates, validates, and reports on GAIA installations.
7
7
  # ─────────────────────────────────────────────────────────────────────────────
8
8
 
9
- readonly VERSION="1.1.6"
9
+ readonly VERSION="1.1.7"
10
10
  readonly GITHUB_REPO="https://github.com/J-louage/Gaia-framework.git"
11
11
  readonly MANIFEST_REL="_gaia/_config/manifest.yaml"
12
12
 
@@ -439,7 +439,7 @@ cmd_update() {
439
439
  local rel="${file#$src_path/}"
440
440
  copy_with_backup "$file" "$dst_path/$rel" "$backup_dir"
441
441
  updated=$((updated + 1))
442
- done < <(find "$src_path" -type f -print0)
442
+ done < <(find "$src_path" -type f -print0) || true
443
443
  fi
444
444
  done
445
445
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gaia-framework",
3
- "version": "1.1.6",
3
+ "version": "1.1.7",
4
4
  "description": "GAIA — Generative Agile Intelligence Architecture installer",
5
5
  "bin": {
6
6
  "gaia-framework": "./bin/gaia-framework.js"