librewolf: fix syntax error causing patches to not be applied (#404700)

This commit is contained in:
Franz Pletz
2025-05-06 20:34:31 +02:00
committed by GitHub
@@ -15,7 +15,7 @@ rec {
extraPostPatch = ''
while read patch_name; do
if [ "$patch_name" -neq "patches/macos-import-vector.patch"]; then
if [ "$patch_name" != "patches/macos-import-vector.patch" ]; then
echo "applying LibreWolf patch: $patch_name"
patch -p1 < ${source}/$patch_name
else