File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -484,7 +484,7 @@ deps() {
484484 debug " mvn -B -DincludeScope=runtime dependency:list"
485485 local depList=" $( mvn -B -DincludeScope=runtime dependency:list) " ||
486486 die " Problem fetching dependencies!" 5
487- echo " $depList " | grep ' ^\[INFO\] [^ ] ' |
487+ echo " $depList " | grep ' ^\[INFO\] \w ' |
488488 sed ' s/\[INFO\] //' | sed ' s/ .*//' | sort
489489 cd - > /dev/null
490490}
@@ -722,7 +722,7 @@ successLog="$HOME/.cache/scijava/melting-pot/$1.success.log"
722722mkdir -p "$( dirname " $successLog " ) "
723723
724724# Record dependency configuration of successful build.
725- deps=$( grep ' ^\[[^ ]*INFO[^ ]*\] ' " $buildLog " |
725+ deps=$( grep ' ^\[[^ ]*INFO[^ ]*\] \w ' " $buildLog " |
726726 sed -e ' s/^[^ ]* *//' -e ' s/ -- .*//' -e ' s/ (\([^)]*\))/-\1/' |
727727 sort | tr ' \n' ' ,' )
728728if [ -z "$( containsLine " $deps " " $successLog " ) " ]
@@ -838,7 +838,7 @@ meltDown() {
838838 echo ' cd - >/dev/null' >> build.sh
839839 echo ' }' >> build.sh
840840 echo >> build.sh
841- echo ' mvnPin dependency:list &&' >> build.sh
841+ echo ' mvnPin dependency:list dependency:tree &&' >> build.sh
842842 echo >> build.sh
843843 echo ' if [ -f gav ]' >> build.sh
844844 echo ' then' >> build.sh
You can’t perform that action at this time.
0 commit comments