From 8fd948cddac4ec11c4dd99f1da17e0f863158658 Mon Sep 17 00:00:00 2001 From: Ron Evans Date: Wed, 30 May 2018 16:42:45 +0200 Subject: [PATCH] build: single quotes needed to upload any .cov file to codecov for reporting Signed-off-by: Ron Evans --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index ef6563d5..3063e6d5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -56,7 +56,7 @@ script: - echo "Checking that code is well-formatted" - make fmt_check after_success: - - bash <(curl -s https://codecov.io/bash) -f "*.cov" + - bash <(curl -s https://codecov.io/bash) -f '*.cov' branches: except: - gobot.io