nextcloud-android/scripts/checkIfRunDrone.sh
tobiasKaminsky 53633991d2
merge commit should always run drone
Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
2019-07-25 11:54:12 +02:00

15 lines
385 B
Bash
Executable file

#!/bin/sh -e
if [ -z $3 ] ; then
echo "Merge commit to master -> continue with CI"
exit 0
fi
export BRANCH=$(scripts/analysis/getBranchBase.sh $1 $2 $3 | sed s'/"//'g)
if [ $(git diff --name-only origin/$BRANCH | grep -cE "^src|build.gradle") -eq 0 ] ; then
echo "No source files changed"
exit 1
else
echo "Source files changed -> continue with CI"
exit 0
fi