We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d00ca78 commit e84cb1bCopy full SHA for e84cb1b
scripts/bash_lib.sh
@@ -415,9 +415,11 @@ upgrade_test_type() {
415
minor=${major_version##*.}
416
# with the earliest supported 11.X version
417
# and make this the upgrade from 10.11
418
- if [ "$minor" -le 1 ]; then
+ if [ "$minor" -eq 0 ]; then
419
if ((major == 11)); then
420
prev_major_version="10.11"
421
+ elif ((major == 12)); then
422
+ prev_major_version="11.8"
423
else
424
bb_log_err "Unknown previous branch for $branch_tmp, please update this script"
425
exit 1
0 commit comments