librewolf: fix syntax error causing patches to not be applied

Broken in e948371e72.
This commit is contained in:
Andrew Marshall
2025-05-06 14:31:54 -04:00
parent e7072d135f
commit 9a35e88613
@@ -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