aboutsummaryrefslogtreecommitdiff
path: root/.travis
diff options
context:
space:
mode:
authorJakub Jirutka <jakub@jirutka.cz>2016-11-19 12:29:51 +0100
committerJakub Jirutka <jakub@jirutka.cz>2016-11-19 12:30:32 +0100
commit4698ffd181d5244dbfa1011c3f34e71349cda9c5 (patch)
tree5124fa8ee348f4d83db28decb594a1bf93695119 /.travis
parentde4953d8d48d8d598ecb49ade56733dc038dfd59 (diff)
downloadalpine_aports-4698ffd181d5244dbfa1011c3f34e71349cda9c5.tar.bz2
alpine_aports-4698ffd181d5244dbfa1011c3f34e71349cda9c5.tar.xz
alpine_aports-4698ffd181d5244dbfa1011c3f34e71349cda9c5.zip
travis: don't treat "scripts" directory as a repository
Diffstat (limited to '.travis')
-rwxr-xr-x.travis/build-pkgs2
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis/build-pkgs b/.travis/build-pkgs
index b87e9e0185..8dcf8ba21e 100755
--- a/.travis/build-pkgs
+++ b/.travis/build-pkgs
@@ -8,7 +8,7 @@ set -eu
8# changed/created in the specified revisions. 8# changed/created in the specified revisions.
9changed_repos() { 9changed_repos() {
10 local commit_ish="$1" 10 local commit_ish="$1"
11 local repos="$(find * -type d -maxdepth 0 ! -name '.*')" 11 local repos="$(find * -type d -maxdepth 0 ! -name '.*' ! -name 'scripts')"
12 12
13 # Print names of dirs in the current directory (it's *not* recursive) 13 # Print names of dirs in the current directory (it's *not* recursive)
14 # that contain some changes and consider only dirs listed in $repos. 14 # that contain some changes and consider only dirs listed in $repos.