Compare commits

...

1 Commits

Author SHA1 Message Date
Vitaly Provodin
b276934ea7 fixup! JBR-6181 add Linux executables with bundled FreeType 2023-10-15 17:30:34 +07:00

View File

@@ -5,7 +5,7 @@ set -x
function check_bundle_type_maketest() {
# check whether last char is 't', if so remove it
if [ "${bundle_type: -1}" == "t" && "${bundle_type: -2}" == "ft" ]; then
if [ "${bundle_type: -1}" == "t" ] && [ "${bundle_type: -2}" == "ft" ]; then
bundle_type="${bundle_type%?}"
do_maketest=1
else