Browse Source

Tidying: Escape extra double quotes

The double-quote inside the double quote was not escaped.

Changelog: None

Signed-off-by: Ole Petter <ole.orhagen@northern.tech>
2.0.x
Ole Petter 5 years ago
parent
commit
32f0721666
No known key found for this signature in database GPG Key ID: A7100375167A7B21
  1. 2
      mender-convert

2
mender-convert

@ -82,7 +82,7 @@ if [ -z "${MENDER_ARTIFACT_NAME}" ]; then
echo "Sorry, it seems that you have not defined MENDER_ARTIFACT_NAME"
echo "You can do this with the following command:"
echo ""
echo -e "\tMENDER_ARTIFACT_NAME="release-1" ./mender-convert"
echo -e "\tMENDER_ARTIFACT_NAME=\"release-1\" ./mender-convert"
exit 1
fi

Loading…
Cancel
Save