nextcloud-android/scripts/analysis/detectNewJavaFiles.sh
tobiasKaminsky 7817a3b8d5
Let us no longer create java files
Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
Co-authored-by: Álvaro Brey <alvaro.brey@nextcloud.com>
Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
2022-04-08 10:17:44 +02:00

11 lines
227 B
Bash
Executable file

#!/bin/bash
count=$(grep \.java\" -c "$HOME"/files_added.json)
if [ "$count" -eq 0 ] ; then
exit 0
else
echo "New Java files detected! Please use Kotlin for new files. Number of new Java files: $count"
exit 1
fi