We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 69a0348 commit a1616a7Copy full SHA for a1616a7
2 files changed
.kokoro/common.sh
@@ -71,7 +71,7 @@ function parse_submodules() {
71
72
# Use grep to find the modules in the aggregator pom file
73
# Faster than invoking mvn help:evaluate to list all the project modules
74
- modules=$(grep '<module>' "$1/pom.xml" | sed 's/.*<module>\(.*\)<\/module>.*/\1/')
+ modules=$(grep '<module>' "$1/pom.xml" | sed 's/.*<module>\(.*\)<\/module>.*/\1/' || true)
75
if [ -n "$modules" ]; then
76
for submodule in $modules; do
77
# Each entry = <folder>/<submodule>
google-cloud-pom-parent/pom.xml
@@ -11,6 +11,7 @@
11
<url>https://github.com/googleapis/google-cloud-java</url>
12
<description>
13
The top-level parent for all modules in the repository.
14
+
15
</description>
16
<parent>
17
<groupId>com.google.cloud</groupId>
0 commit comments