Skip to content

Commit

Permalink
[MGPG-130] Update sigstore extension for exclusion
Browse files Browse the repository at this point in the history
Sigstore uses ".sigstore.json" extension in all our plugins, ".sigstore" is legacy
  • Loading branch information
loosebazooka committed Jul 26, 2024
1 parent 091f388 commit 805ad6a
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,9 @@
public class FilesCollector {
private final MavenProject project;

private static final String[] DEFAULT_EXCLUDES =
new String[] {"**/*.md5", "**/*.sha1", "**/*.sha256", "**/*.sha512", "**/*.asc", "**/*.sigstore"};
private static final String[] DEFAULT_EXCLUDES = new String[] {
"**/*.md5", "**/*.sha1", "**/*.sha256", "**/*.sha512", "**/*.asc", "**/.sigstore.json", "**/*.sigstore.json"
};

private final String[] excludes;

Expand Down

0 comments on commit 805ad6a

Please sign in to comment.