fix: incorrect URL for bib image on justfile (#55)
This commit is contained in:
parent
51e4719366
commit
8ce1cdb82a
2
Justfile
2
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" } }
|
||||
|
|
|
|||
Loading…
Reference in New Issue