sidplayfp: 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:
OPNA2608
2026-04-11 17:00:11 +02:00
parent 9dcebe2c85
commit 77dc43ebb3
+1 -1
View File
@@ -72,7 +72,7 @@ stdenv.mkDerivation (finalAttrs: {
};
updateScript = gitUpdater {
rev-prefix = "v";
ignoredVersions = "(a|rc)";
ignoredVersions = "[a-zA-Z]";
};
};