From d41145e75e9506be63728ef1e15cba2fcdabd1c6 Mon Sep 17 00:00:00 2001 From: Loki Astari Date: Tue, 30 Jun 2015 21:53:36 -0700 Subject: [PATCH] Try removing . from file name --- uploadcodecovrage | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uploadcodecovrage b/uploadcodecovrage index 5095bb2f..4f1361c6 100755 --- a/uploadcodecovrage +++ b/uploadcodecovrage @@ -4,7 +4,7 @@ find src -type f -not -path '*/test/*' '(' -name '*.cpp' -or -name '*.tpp' ')' | for file in $(find src -type f -name '*.gcov'); do echo "<<<<<< EOF" >> upload - cat "$file" | sed -e 's/\(0:[A-Za-z]*\):[A-Za-z]*\//\1:/' >> upload + cat "$file" | sed -e 's/\(0:[A-Za-z]*\):[A-Za-z.]*\//\1:/' >> upload done echo "https://codecov.io/upload/v2?service=travis-org&branch=$TRAVIS_BRANCH&commit=$TRAVIS_COMMIT&build=$TRAVIS_JOB_NUMBER&pull_request=$TRAVIS_PULL_REQUEST&job=$TRAVIS_JOB_ID&slug=$TRAVIS_REPO_SLUG"