Unverified Commit 207d12ce authored by Aleksana's avatar Aleksana Committed by GitHub
Browse files

fish-lsp: add regex capture group to fix version filtering (#463076)

parents 6ae6da37 60bf19dd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -82,7 +82,7 @@ stdenv.mkDerivation (finalAttrs: {
  passthru.updateScript = nix-update-script {
    extraArgs = [
      "--version-regex"
      "v\\d+\\.\\d+\\.\\d+(?:-\\d+)?$"
      "v(\\d+\\.\\d+\\.\\d+(?:-\\d+)?)$"
    ];
  };