From 37c128627d62fada4e37b595f77767ccac12d8d5 Mon Sep 17 00:00:00 2001 From: Gerald Pinder Date: Mon, 28 Jul 2025 23:11:30 -0400 Subject: [PATCH] chore: Typo Closes #503 --- template/templates/stages.j2 | 2 +- utils/src/constants.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/template/templates/stages.j2 b/template/templates/stages.j2 index 94a656a..ad0dc04 100644 --- a/template/templates/stages.j2 +++ b/template/templates/stages.j2 @@ -28,7 +28,7 @@ COPY ./modules /modules FROM scratch AS stage-bins COPY --from={{ blue_build_utils::constants::COSIGN_IMAGE }} /ko-app/cosign /bins/cosign {%- if recipe.should_install_bluebuild() %} -COPY --from={{ blue_build_utils::constants::BLUE_BULID_IMAGE_REF }}:{{ recipe.get_bluebuild_version() }} \ +COPY --from={{ blue_build_utils::constants::BLUE_BUILD_IMAGE_REF }}:{{ recipe.get_bluebuild_version() }} \ /out/bluebuild /bins/bluebuild {%- endif %} diff --git a/utils/src/constants.rs b/utils/src/constants.rs index 301dd4f..834134a 100644 --- a/utils/src/constants.rs +++ b/utils/src/constants.rs @@ -79,7 +79,7 @@ pub const SUDO_ASKPASS: &str = "SUDO_ASKPASS"; // Misc pub const BLUE_BUILD: &str = "bluebuild"; pub const BUILD_SCRIPTS_IMAGE_REF: &str = "ghcr.io/blue-build/cli/build-scripts"; -pub const BLUE_BULID_IMAGE_REF: &str = "ghcr.io/blue-build/cli"; +pub const BLUE_BUILD_IMAGE_REF: &str = "ghcr.io/blue-build/cli"; pub const BLUE_BUILD_MODULE_IMAGE_REF: &str = "ghcr.io/blue-build/modules"; pub const COSIGN_IMAGE: &str = "ghcr.io/sigstore/cosign/cosign:v2.5.3"; pub const NUSHELL_IMAGE: &str = "ghcr.io/blue-build/nushell-image";