We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f3c4b4 commit 9bce980Copy full SHA for 9bce980
dev/tests/pr_new_dependencies.sh
@@ -47,7 +47,8 @@ git checkout "${current_pr_head}"
47
# Check if any *.pom files from the current branch are different from the master
48
difference_q=""
49
for p in $(find -name "pom.xml"); do
50
- difference_q="${difference_q}$(diff $p.gate $p)"
+ [ -f "${p}" && -f "${p}.gate" ] && \
51
+ difference_q="${difference_q}$(diff $p.gate $p)"
52
done
53
54
# If no pom files were changed we can easily say no new dependencies were added
0 commit comments