From c3a16e23d531077749ccde0b07a5f50f2daa8fad Mon Sep 17 00:00:00 2001 From: Mike Date: Wed, 20 Nov 2024 11:04:47 -0800 Subject: [PATCH] Update error message when manifest.yaml or image.yaml are missing Co-authored-by: Dusty Mabe --- src/cmd-init | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cmd-init b/src/cmd-init index e48311bea5..f523b0e59d 100755 --- a/src/cmd-init +++ b/src/cmd-init @@ -195,7 +195,7 @@ if [[ -n "${VARIANT}" ]] && [[ "${VARIANT}" != "default" ]]; then EOF elif [[ ! -f "${manifest}" ]] || [[ ! -f "${image}" ]]; then echo 1>&2 "Could not find default manifests (${manifest} & ${image})" - fatal "If you are using a custom configuration, be sure it has a manifest.yaml & image.yaml." + fatal "If you aren't using a custom configuration, be sure there are manifest.yaml & image.yaml files." fi mkdir -p cache