@le-space/rootfs 0.1.9 → 0.1.10

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@le-space/rootfs",
3
- "version": "0.1.9",
3
+ "version": "0.1.10",
4
4
  "description": "Shared rootfs contract parsing, reference profile assets, and build helpers.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -48,7 +48,8 @@ mkdir -p "${OUT_DIR}"
48
48
  echo "Building uc-go-peer image in prebaked mode"
49
49
 
50
50
  if [ ! -f "${BASE_IMAGE}" ]; then
51
- curl -L "${BASE_URL}" -o "${BASE_IMAGE}"
51
+ echo "Downloading base image from ${BASE_URL}"
52
+ curl --fail --show-error --location --retry 5 --retry-all-errors --retry-delay 5 --connect-timeout 20 --max-time 300 "${BASE_URL}" -o "${BASE_IMAGE}"
52
53
  fi
53
54
 
54
55
  cp "${BASE_IMAGE}" "${IMAGE}"