If template_flavor only contains a '+'; send back $DIST

This commit is contained in:
Jason Mehring 2015-02-10 09:54:40 -05:00
parent f1142db535
commit 0f6cdceb61

View File

@ -22,7 +22,12 @@ templateFlavorPrefix() {
fi
done
# If template_flavor only contains a '+'; send back $DIST
if [ "${template_flavor}" == "+" ]; then
echo "${DIST}"
else
echo "${DIST}${template_flavor:++}"
fi
}
templateNameDist() {