Commit b66fe85
authored
fix(install): make Enterprise startup options 2 and 3 reachable (#27363)
The Enterprise startup case statement used `1|*)` as its first arm,
which matches any input because `*` is a wildcard. This made options
`2` (Custom Configuration) and `3` (Skip startup) unreachable — every
non-`1` input fell into the first arm and printed "Invalid choice".
Split the pattern into separate `1)` and `*)` arms, matching the Core
block's structure.1 parent 73be12b commit b66fe85
1 file changed
Lines changed: 7 additions & 4 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1437 | 1437 | | |
1438 | 1438 | | |
1439 | 1439 | | |
1440 | | - | |
| 1440 | + | |
1441 | 1441 | | |
1442 | | - | |
1443 | | - | |
1444 | | - | |
1445 | 1442 | | |
1446 | 1443 | | |
1447 | 1444 | | |
| |||
1454 | 1451 | | |
1455 | 1452 | | |
1456 | 1453 | | |
| 1454 | + | |
| 1455 | + | |
| 1456 | + | |
| 1457 | + | |
| 1458 | + | |
| 1459 | + | |
1457 | 1460 | | |
1458 | 1461 | | |
1459 | 1462 | | |
| |||
0 commit comments