0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00

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