Details
-
Bug
-
Status: Closed (View Workflow)
-
Blocker
-
Resolution: Fixed
-
10.11, 11.1(EOL), 11.2, 11.4
Description
https://github.com/MariaDB/server/commit/a960e95febd10b8558e9e626869babd0573bbf69 Introduces a Bash typo:
if test "$cross_bootstrap" -eq 0 -a "$in_rpm" -eq 0 -a "$force" -eq 0 |
do_resolve=1
|
then
|
fi |
Which should likely read:
if test "$cross_bootstrap" -eq 0 -a "$in_rpm" -eq 0 -a "$force" -eq 0 |
then
|
do_resolve=1
|
fi |
This leads to mariadb-install-db breaking:
10.11.9 (Optimized) |
scripts/mariadb-install-db: 337: Syntax error: "fi" unexpected
|