Hide Forgot
Created attachment 486546 [details] Fix pipefailure in checkSyslinuxVersion() The new set -o pipefail option, set early, changes a return value in checkSyslinuxVersion() leading to SYSLINUXPATH being set to "". The attached patch rewrites the test. The earlier test tested the usage function in /usr/bin/syslinux. The replacement checks the the --version output for a general 'syslinux' response. This should exercise the installed program like the previous test, but I'm not familiar with the use case for the failure condition that leads to SYSLINUXPATH being set to "".
Created attachment 486551 [details] Really fix pipefailure in checkSyslinuxVersion() Resubmitted patch with test operation changed from == to != as required.