Unverified Commit 2bba5ad1 authored by Ramses's avatar Ramses Committed by GitHub
Browse files

sudo-rs: add regex to avoid ryantm PRs for the `-man` releases (#417551)

parents 69c58da9 ac55f4a3
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;
  };