Bernhard Voelker changed bug 1120363
What Removed Added
CC   mail@bernhard-voelker.de

Comment # 1 on bug 1120363 from
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


You are receiving this mail because: