From 58a81694f68055b899343a2a38b10f679d79c959 Mon Sep 17 00:00:00 2001 From: Alexander Bezzubov Date: Tue, 9 Apr 2019 18:58:14 +0200 Subject: [PATCH] ci: fix bug that enabled oniguruma for all profiles Signed-off-by: Alexander Bezzubov --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 143bd30..3ec112f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -30,7 +30,7 @@ stages: stage: test install: - - if [[ -n "$ONIGURUMA" ]]; then tags="$tags oniguruma"; fi; go get -v -t --tags "$tags" ./... + - if [[ "${ONIGURUMA}" -gt 0 ]]; then export tags="${tags} oniguruma"; fi; go get -v -t -tags "${tags}" ./... script: - make test-coverage after_success: