Unverified Commit ac55f4a3 authored by r-vdp's avatar r-vdp
Browse files

sudo-rs: add regex to avoid ryantm PRs for the `-man` releases

We build the manpages ourselves, so we don't need to use those `-man`
releases.
parent 5f8808fa
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -75,7 +75,11 @@ rustPlatform.buildRustPackage (finalAttrs: {
  ];

  passthru = {
    updateScript = nix-update-script { };
    updateScript = nix-update-script {
      extraArgs = [
        "--version-regex=^v([0-9]+\\.[0-9]+\\.[0-9])$"
      ];
    };
    tests = nixosTests.sudo-rs;
  };