Skip to content

Commit

Permalink
Update error message when manifest.yaml or image.yaml are missing
Browse files Browse the repository at this point in the history
Co-authored-by: Dusty Mabe <[email protected]>
  • Loading branch information
mtalexan and dustymabe committed Nov 21, 2024
1 parent 647bf16 commit c3a16e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cmd-init
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c3a16e2

Please sign in to comment.