Skip to content

Commit

Permalink
fix: write artifact basename to configuration in update dependencies
Browse files Browse the repository at this point in the history
Signed-off-by: Austin Vazquez <[email protected]>
  • Loading branch information
austinvazquez committed Jun 26, 2024
1 parent 19274d9 commit 0b21167
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions bin/update-deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ truncate -s 0 "${BUNDLES_FILE}"
echo "ARTIFACT_BASE_URL=${DEPENDENCY_CLOUDFRONT_URL}"
echo ""
echo "AARCH64_ARTIFACT_PATHING=${AARCH64}"
echo "AARCH64_ARTIFACT=${aarch64_deps}"
echo "AARCH64_ARTIFACT=$(basename "${aarch64_deps}")"
echo "AARCH64_512_DIGEST=${aarch64_deps_shasum}"
echo ""
echo "X86_64_ARTIFACT_PATHING=${X86_64}"
echo "X86_64_ARTIFACT=${amd64_deps}"
echo "X86_64_ARTIFACT=$(basename "${amd64_deps}")"
echo "X86_64_512_DIGEST=${amd64_deps_shasum}"
} >> "${BUNDLES_FILE}"
2 changes: 1 addition & 1 deletion bin/update-rootfs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,6 @@ truncate -s 0 "${ROOTFS_FILE}"
echo "ARTIFACT_BASE_URL=${DEPENDENCY_CLOUDFRONT_URL}"
echo ""
echo "X86_64_ARTIFACT_PATHING=${PLATFORM}/${X86_64}"
echo "X86_64_ARTIFACT=${amd64_deps}"
echo "X86_64_ARTIFACT=$(basename "${amd64_deps}")"
echo "X86_64_512_DIGEST=${amd64_deps_shasum}"
} >> "${ROOTFS_FILE}"

0 comments on commit 0b21167

Please sign in to comment.