remove double quotes

This commit is contained in:
Andrew Bauer 2017-03-06 18:56:44 -06:00
parent bfe84e6a7c
commit b514ab0b3c
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ checksanity () {
done
# Verify OS & DIST environment variables have been set before calling this script
if [ -z "${OS}" ] || [ -z ""${DIST}"" ]; then
if [ -z "${OS}" ] || [ -z "${DIST}" ]; then
echo "ERROR: both OS and DIST environment variables must be set"
exit 1
fi