Skip to content

Commit 64c6356

Browse files
committed
Ensure no duplicates in status list
A couple projects show up multiple times in the dependency list. Sorting with -u resolves the situation.
1 parent 40b51ed commit 64c6356

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

newest-releases.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ result=$(mvn -B -U -Dverbose=true -f "$pomFile" -s settings.xml \
3737
# Catch when there is no version update.
3838
sed 's/ *\.\.\.\.* *\([^ ]*\) */,\1,\1/' |
3939
# Sort the results.
40-
sort)
40+
sort -u)
4141

4242
echo "$result" | tee $cacheFile
4343

0 commit comments

Comments
 (0)