We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5bb6296 commit c138516Copy full SHA for c138516
src/main/scripts/show-spring-boot-version-diff.sh
@@ -21,8 +21,8 @@ printf "Comparing with Spring Boot %s (project vs spring versions)\\n\\n" "$SPRI
21
# I know about useless cat below, but it's here for better readability.
22
# shellcheck disable=SC2002
23
join \
24
- <(cat "$PROJECT_POM" | awk -F'[<>]' -v OFS='\t' '$2~/\.version/{print $2, $3}' | sort) \
25
- <(curl -s "$SPRING_POM" | awk -F'[<>]' -v OFS='\t' '$2~/\.version/{print $2, $3}' | sort) \
+ <(cat "$PROJECT_POM" | awk -F'[<>]' -v OFS='\t' '$2~/\.version$/{print $2, $3}' | sort) \
+ <(curl -s "$SPRING_POM" | awk -F'[<>]' -v OFS='\t' '$2~/\.version$/{print $2, $3}' | sort) \
26
| awk '
27
{
28
if ($2 != $3){
0 commit comments