Fix operators in UEFI post-install load check

&! is not a thing, and os-autoinst has been warning us about
this forever:

Use of uninitialized value in bitwise and (&) at fedora/main.pm line 310.

I just sorta didn't notice. Apparently this turned out to work,
but it wasn't *right*. Let's do it this way instead.

Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
Adam Williamson 2022-02-20 15:41:04 -08:00
parent 9bc039b26d
commit e45fc488fc
1 changed files with 1 additions and 1 deletions

View File

@ -307,7 +307,7 @@ sub load_postinstall_tests() {
}
autotest::loadtest $storagepost if ($storagepost);
if (get_var("UEFI") &! get_var("NO_UEFI_POST") &! get_var("START_AFTER_TEST")) {
if (get_var("UEFI") && !get_var("NO_UEFI_POST") && !get_var("START_AFTER_TEST")) {
autotest::loadtest "tests/uefi_postinstall.pm";
}