@le-space/node 0.1.3 → 0.1.4

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.
Files changed (2) hide show
  1. package/index.js +3 -3
  2. package/package.json +4 -4
package/index.js CHANGED
@@ -2377,7 +2377,7 @@ function createHostRootfsExecutionPlan(plan, options = {}) {
2377
2377
  reason: "Using host virt-customize/qemu-img toolchain.",
2378
2378
  referenceRootfsDir,
2379
2379
  runCommand: {
2380
- command: "bash",
2380
+ command: "/bin/bash",
2381
2381
  args: [path2.join(referenceRootfsDir, "build-rootfs-image.sh")],
2382
2382
  workdir: referenceRootfsDir,
2383
2383
  env: {
@@ -2439,7 +2439,7 @@ function createDockerRootfsExecutionPlan(plan, options = {}) {
2439
2439
  "-w",
2440
2440
  rootfsMountPath,
2441
2441
  dockerImageTag,
2442
- "bash",
2442
+ "/bin/bash",
2443
2443
  path2.posix.join(rootfsMountPath, "build-rootfs-image.sh")
2444
2444
  ]
2445
2445
  }
@@ -2559,7 +2559,7 @@ function rootfsScriptDir(buildPlan, override) {
2559
2559
  function createRootfsScriptCommand(buildPlan, referenceRootfsDir) {
2560
2560
  const scriptDir = rootfsScriptDir(buildPlan, referenceRootfsDir);
2561
2561
  return {
2562
- command: "bash",
2562
+ command: "/bin/bash",
2563
2563
  args: [path3.join(scriptDir, "build-rootfs.sh")],
2564
2564
  workdir: scriptDir,
2565
2565
  env: rootfsBuildShellEnv(buildPlan)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@le-space/node",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Node and GitHub Actions adapters for shared Aleph tooling.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -16,9 +16,9 @@
16
16
  "access": "public"
17
17
  },
18
18
  "dependencies": {
19
- "@le-space/core": "0.1.3",
20
- "@le-space/shared-types": "0.1.3",
21
- "@le-space/rootfs": "0.1.3",
19
+ "@le-space/core": "0.1.4",
20
+ "@le-space/shared-types": "0.1.4",
21
+ "@le-space/rootfs": "0.1.4",
22
22
  "ethers": "^6.15.0"
23
23
  }
24
24
  }