File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -18,15 +18,15 @@ SPRING_VERSION='2.2.13.RELEASE'
18
18
# SPRING_VERSION="$(grep -FA1 '<artifactId>spring-boot-starter-parent' "$PROJECT_POM" | awk -F'[<>]' '/<version>/{print $3}')"
19
19
20
20
# @todo #869 show-spring-boot-version-diff.sh: properly handle recursive properties
21
- SPRING_POM=" https://raw.githubusercontent.com/spring-projects/spring-boot/v$SPRING_VERSION /spring-boot-project/spring-boot-dependencies/pom.xml"
21
+ SPRING_POM=" $( curl -sS --fail-with-body https://raw.githubusercontent.com/spring-projects/spring-boot/v$SPRING_VERSION /spring-boot-project/spring-boot-dependencies/pom.xml) "
22
22
23
23
printf " Comparing with Spring Boot %s (project vs spring versions)\\ n\\ n" " $SPRING_VERSION "
24
24
25
25
# I know about useless cat below, but it's here for better readability.
26
26
# shellcheck disable=SC2002
27
27
join \
28
- <( cat " $PROJECT_POM " | awk -F' [<>]' -v OFS=' \t' ' $2~/\.version$/{print $2, $3}' | sort) \
29
- <( curl -sS --fail-with-body " $SPRING_POM " | awk -F' [<>]' -v OFS=' \t' ' $2~/\.version$/{print $2, $3}' | sort) \
28
+ <( cat " $PROJECT_POM " | awk -F' [<>]' -v OFS=' \t' ' $2~/\.version$/{print $2, $3}' | sort) \
29
+ <( echo " $SPRING_POM " | awk -F' [<>]' -v OFS=' \t' ' $2~/\.version$/{print $2, $3}' | sort) \
30
30
| awk '
31
31
{
32
32
if ($2 != $3){
You can’t perform that action at this time.
0 commit comments