From f1aa50b217d33fc934c193f6a4e55a37229c21af Mon Sep 17 00:00:00 2001 From: Ahmet Alp Balkan Date: Thu, 26 Feb 2015 23:56:52 -0800 Subject: [PATCH] Take `nightly` out of CI. By definition nightly is supposed to break regularly. Let's not allow that to effect our master build or PR builds. Undoing particular change made in #36. Signed-off-by: Ahmet Alp Balkan --- .ci/find-tags.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/find-tags.sh b/.ci/find-tags.sh index ef781ec6..304eff73 100755 --- a/.ci/find-tags.sh +++ b/.ci/find-tags.sh @@ -5,4 +5,4 @@ set -o pipefail # carry failures over pipes : ${1?"Need to pass Dockerfile search directory as argument"} cd $1 -find . -path ./.git -prune -o -name Dockerfile -print0 | xargs -0 -n1 dirname | sed -e "s/\.\///" +find . -path ./.git -prune -o -name Dockerfile -print0 | xargs -0 -n1 dirname | sed -e "s/\.\///" | grep -v nightly