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" } }