If template_flavor only contains a '+'; send back $DIST
This commit is contained in:
parent
f1142db535
commit
0f6cdceb61
@ -22,7 +22,12 @@ templateFlavorPrefix() {
|
|||||||
fi
|
fi
|
||||||
done
|
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() {
|
templateNameDist() {
|
||||||
|
Loading…
Reference in New Issue
Block a user