7 lines
207 B
Bash
7 lines
207 B
Bash
|
#!/bin/bash
|
||
|
rm -f build/updates.txt
|
||
|
./gradlew dependencyUpdate -Drevision=release
|
||
|
find . -name report.txt | xargs cat > build/updates.txt
|
||
|
echo "Updates...."
|
||
|
cat build/updates.txt | fgrep ' ->' | sort | uniq
|