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

pull/1/head
Jason Mehring 9 years ago
parent f1142db535
commit 0f6cdceb61

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

Loading…
Cancel
Save