Unverified Commit 98cb565d authored by Franz Pletz's avatar Franz Pletz Committed by GitHub
Browse files

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

parents df545660 9a35e886
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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