What | Removed | Added |
---|---|---|
CC | mail@bernhard-voelker.de |
Indeed, the spec contains the following shell snippet: %postun ... if [ "$1" = 0 && -d "/boot/efi/EFI/%{efidir}" ] ; then Instead, it should propably read: if [ "$1" = 0 ] && [ -d "/boot/efi/EFI/%{efidir}" ] ; then