mirror of
https://github.com/nextcloud/android.git
synced 2024-11-28 02:17:43 +03:00
11 lines
172 B
Bash
11 lines
172 B
Bash
|
#!/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
|
||
|
|