Merge pull request #63609 from tokudan/udev-executable-check

udev: change error message if RUN entry is not executable
This commit is contained in:
Matthew Bauer 2019-06-23 21:43:31 -04:00 committed by GitHub
commit 500c13ed46
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -85,7 +85,7 @@ let
for i in $import_progs $run_progs; do
if [[ ! -x $i ]]; then
echo "FAIL"
echo "$i is called in udev rules but not installed by udev"
echo "$i is called in udev rules but is not executable or does not exist"
exit 1
fi
done