From 448c2c93327025d1699cdd1dfdee1781b0407ea7 Mon Sep 17 00:00:00 2001 From: JeremyRand Date: Mon, 6 Jan 2020 01:02:17 +0000 Subject: [PATCH] Travis: only use Tor tags that include "tbb" This is to avoid accepting tags like "test_bug_30480-t4". --- .travis/check-tbb-tags | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis/check-tbb-tags b/.travis/check-tbb-tags index c5844ae..c495399 100755 --- a/.travis/check-tbb-tags +++ b/.travis/check-tbb-tags @@ -9,7 +9,7 @@ GIT_TAG=$(git submodule status tor-browser-build | awk '{print $3}') GIT_URL=https://git.torproject.org/builders/tor-browser-build.git -LATEST_TAG=$(git ls-remote --tags "${GIT_URL}" | grep -v '\^{}' | awk '{print $2}' | awk -F"/" '{print $3}' | sort -V | tail --lines=1) +LATEST_TAG=$(git ls-remote --tags "${GIT_URL}" | grep 'tbb' | grep -v '\^{}' | awk '{print $2}' | awk -F"/" '{print $3}' | sort -V | tail --lines=1) if [ "${GIT_TAG}" != "(${LATEST_TAG})" ] then FAIL=1