Skip to content

Commit

Permalink
Support -T C1 even if I can't get it to work
Browse files Browse the repository at this point in the history
It was reported by some devs as being used...
  • Loading branch information
gsmet committed Feb 20, 2024
1 parent 1bc29f9 commit 68c2dfd
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,10 @@ private static void workaroundQuickly(BuildCacheApi buildCacheApi) {
if (Character.isDigit(segment.charAt(0))) {
continue;
}
// when using -T C6 which seems to work for some versions of Maven (but not mine)
if (segment.length() > 2 && segment.charAt(0) == 'C' && Character.isDigit(segment.charAt(1))) {
continue;
}

hasGoals = true;
}
Expand Down

0 comments on commit 68c2dfd

Please sign in to comment.