Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/travis/changed_app.sh')
-rwxr-xr-xtests/travis/changed_app.sh18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/travis/changed_app.sh b/tests/travis/changed_app.sh
new file mode 100755
index 00000000000..a4be0476573
--- /dev/null
+++ b/tests/travis/changed_app.sh
@@ -0,0 +1,18 @@
+#!/bin/bash
+#
+# ownCloud
+#
+# @author Joas Schilling
+# @author Thomas Müller
+# @copyright 2015 Thomas Müller thomas.mueller@tmit.eu
+#
+
+APP=$1
+
+FOUND=$(git diff ${TRAVIS_COMMIT_RANGE} | grep -- "^+++ b/apps/$APP/")
+
+if [ "x$FOUND" != 'x' ]; then
+ echo "1"
+else
+ echo "0"
+fi