From abc49a2b73f7a3d3e2c5f73805e1c0c2536c5d09 Mon Sep 17 00:00:00 2001 From: Pieter Lexis Date: Tue, 18 Jun 2019 09:48:23 +0200 Subject: [PATCH] coverity: Fix paths from extracted tarball It seems that in the 2019-03 version of the coverity tools, the number of leading dirs in the tarball changed. --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index b2ff9ba83..1f6306d37 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -31,7 +31,7 @@ commands: steps: - run: name: Install Coverity tools - command: curl -s https://scan.coverity.com/download/linux64 --data "token=${COVERITY_TOKEN}&project=${COVERITY_PROJECT}" | gunzip | tar xvf /dev/stdin --strip-components=2 --no-same-owner -C /usr/local + command: curl -s https://scan.coverity.com/download/linux64 --data "token=${COVERITY_TOKEN}&project=${COVERITY_PROJECT}" | gunzip | tar xvf /dev/stdin --strip-components=1 --no-same-owner -C /usr/local add-docs-upload-ssh: description: Add ssh known_hosts fingerprints -- 2.40.0