From 04857c596d095da8ee44dd73ad3662541dbdc9c9 Mon Sep 17 00:00:00 2001 From: Angus Lees Date: Fri, 27 Oct 2017 17:12:37 +1100 Subject: [PATCH] travis-ci: Fix unquoted `:` (yay, yaml) --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 8c217955859..5b15704b624 100644 --- a/.travis.yml +++ b/.travis.yml @@ -49,7 +49,8 @@ script: # FIXME(gus): `validate` fails on CRDs, because the server doens't # publish a schema :( The following `kubeapps up` will verify that the # server accepts them. - - kubecfg validate -v kubeapps.jsonnet || : + - >- + kubecfg validate -v kubeapps.jsonnet || : - ./kubeapps.sh up # FIXME: Do some sort of test here # (perhaps just "did all the pods become Ready?")