mirror of
https://github.com/nextcloud/android.git
synced 2024-11-22 21:25:35 +03:00
38e27420c3
Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
10 lines
172 B
Bash
Executable file
10 lines
172 B
Bash
Executable file
#!/bin/bash
|
|
|
|
count=$(./gradlew dependencies | grep SNAPSHOT | grep -v "com.github.nextcloud:android-library" -c)
|
|
|
|
if [ $count -eq 0 ] ; then
|
|
exit 0
|
|
else
|
|
exit 1
|
|
fi
|
|
|