Update create-coreos-vdi - grammar change

Fixed a grammar based line at `Line 47`:
`echo "$0: Target path (${DEST}) do not exists." >&2` -> `echo "$0: Target path (${DEST}) does not exist." >&2`
This commit is contained in:
shredgar 2020-06-05 11:08:37 +02:00 committed by Kai Lüke
parent 1c0da3c910
commit c666ae5614
No known key found for this signature in database
GPG Key ID: E5601DA3A1D902A8

View File

@ -44,7 +44,7 @@ if [ -z "${DEST}" ]; then
fi
if [[ ! -d "${DEST}" ]]; then
echo "$0: Target path (${DEST}) do not exists." >&2
echo "$0: Target path (${DEST}) does not exist." >&2
exit 1
fi