libsidplayfp: Ignore tags with letters in them
I don't want to keep adding suffixes to this exclusion rule... Just ignore anything that has a letter in it. Leading `v` is stripped before the check, so this should work fine.
This commit is contained in:
@@ -93,7 +93,7 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage;
|
||||
updateScript = gitUpdater {
|
||||
rev-prefix = "v";
|
||||
ignoredVersions = "(a|rc)";
|
||||
ignoredVersions = "[a-zA-Z]";
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user