gaia-framework 1.54.1 → 1.54.2
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 +1 -1
- package/bin/gaia-framework.js +6 -6
- package/gaia-install.sh +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
package/bin/gaia-framework.js
CHANGED
|
@@ -144,12 +144,12 @@ Examples:
|
|
|
144
144
|
|
|
145
145
|
function main(deps) {
|
|
146
146
|
// Dependency injection for testability — defaults to real modules
|
|
147
|
-
const _exec = deps && deps.execSync ||
|
|
148
|
-
const _execFile = deps && deps.execFileSync ||
|
|
149
|
-
const _mkdtemp = deps && deps.mkdtempSync ||
|
|
150
|
-
const _exists = deps && deps.existsSync ||
|
|
151
|
-
const _join = deps && deps.join ||
|
|
152
|
-
const _tmpdir = deps && deps.tmpdir ||
|
|
147
|
+
const _exec = deps && deps.execSync || execSync;
|
|
148
|
+
const _execFile = deps && deps.execFileSync || execFileSync;
|
|
149
|
+
const _mkdtemp = deps && deps.mkdtempSync || mkdtempSync;
|
|
150
|
+
const _exists = deps && deps.existsSync || existsSync;
|
|
151
|
+
const _join = deps && deps.join || join;
|
|
152
|
+
const _tmpdir = deps && deps.tmpdir || tmpdir;
|
|
153
153
|
|
|
154
154
|
const args = process.argv.slice(2);
|
|
155
155
|
|
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.54.
|
|
9
|
+
readonly VERSION="1.54.2"
|
|
10
10
|
readonly GITHUB_REPO="https://github.com/jlouage/Gaia-framework.git"
|
|
11
11
|
readonly MANIFEST_REL="_gaia/_config/manifest.yaml"
|
|
12
12
|
|