Commit 77dc43eb authored by OPNA2608's avatar OPNA2608
Browse files

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.
parent 9dcebe2c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -72,7 +72,7 @@ stdenv.mkDerivation (finalAttrs: {
    };
    updateScript = gitUpdater {
      rev-prefix = "v";
      ignoredVersions = "(a|rc)";
      ignoredVersions = "[a-zA-Z]";
    };
  };