Excluding the EFI directory. Fixes #10

This commit is contained in:
2021-02-13 13:54:17 +01:00
parent d04a4e5151
commit 4b42d088eb
3 changed files with 4 additions and 4 deletions

View File

@ -5,7 +5,7 @@
# Licence: GNU-GPLv3
function sign(){
for f in `find /boot -type f`
for f in $(find /boot -iname "efi" -prune -o -type f -print)
do
if gpg --detach-sign $f
then