From 8ce1cdb82a13e27e085e08b4c43af60af819b9ff Mon Sep 17 00:00:00 2001 From: Tulip Blossom Date: Wed, 8 Jan 2025 21:56:59 -0300 Subject: [PATCH] fix: incorrect URL for bib image on justfile (#55) --- Justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Justfile b/Justfile index 6608d89..f69b5a7 100644 --- a/Justfile +++ b/Justfile @@ -1,7 +1,7 @@ export repo_organization := env("GITHUB_REPOSITORY_OWNER", "yourname") export image_name := env("IMAGE_NAME", "yourimage") export default_tag := env("DEFAULT_TAG", "latest") -export bib_image := env("BIB_IMAGE", "ghcr.io/osbuild/bootc-image-builder:latest") +export bib_image := env("BIB_IMAGE", "quay.io/centos-bootc/bootc-image-builder:latest") export SUDO_DISPLAY := if `if [ -n "${DISPLAY:-}" ] || [ -n "${WAYLAND_DISPLAY:-}" ]; then echo true; fi` == "true" { "true" } else { "false" } export SUDOIF := if `id -u` == "0" { "" } else { if SUDO_DISPLAY == "true" { "sudo --askpass" } else { "sudo" } }