needed to invert a check for debian9

This commit is contained in:
Zane C. B-H 2019-08-09 07:08:05 -05:00
parent 34a865e864
commit a839fc6de2
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ if (
( $? eq 0 ) ||
(
( $^O =~ /linux/ ) &&
( $? eq 256 )
( $? ne 256 )
)
){
$extra_tests++;