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() {
484
484
debug " mvn -B -DincludeScope=runtime dependency:list"
485
485
local depList=" $( mvn -B -DincludeScope=runtime dependency:list) " ||
486
486
die " Problem fetching dependencies!" 5
487
- echo " $depList " | grep ' ^\[INFO\] [^ ] ' |
487
+ echo " $depList " | grep ' ^\[INFO\] \w ' |
488
488
sed ' s/\[INFO\] //' | sed ' s/ .*//' | sort
489
489
cd - > /dev/null
490
490
}
@@ -722,7 +722,7 @@ successLog="$HOME/.cache/scijava/melting-pot/$1.success.log"
722
722
mkdir -p "$( dirname " $successLog " ) "
723
723
724
724
# Record dependency configuration of successful build.
725
- deps=$( grep ' ^\[[^ ]*INFO[^ ]*\] ' " $buildLog " |
725
+ deps=$( grep ' ^\[[^ ]*INFO[^ ]*\] \w ' " $buildLog " |
726
726
sed -e ' s/^[^ ]* *//' -e ' s/ -- .*//' -e ' s/ (\([^)]*\))/-\1/' |
727
727
sort | tr ' \n' ' ,' )
728
728
if [ -z "$( containsLine " $deps " " $successLog " ) " ]
@@ -838,7 +838,7 @@ meltDown() {
838
838
echo ' cd - >/dev/null' >> build.sh
839
839
echo ' }' >> build.sh
840
840
echo >> build.sh
841
- echo ' mvnPin dependency:list &&' >> build.sh
841
+ echo ' mvnPin dependency:list dependency:tree &&' >> build.sh
842
842
echo >> build.sh
843
843
echo ' if [ -f gav ]' >> build.sh
844
844
echo ' then' >> build.sh
You can’t perform that action at this time.
0 commit comments