diff options
-rw-r--r-- | .github/workflows/coverity-scan.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/coverity-scan.yml b/.github/workflows/coverity-scan.yml index cd15124b77..7c885f8b88 100644 --- a/.github/workflows/coverity-scan.yml +++ b/.github/workflows/coverity-scan.yml @@ -19,7 +19,7 @@ jobs: run: | wget -q https://scan.coverity.com/download/cxx/linux64 --post-data "token=$TOKEN&project=neovim%2Fneovim" -O coverity_tool.tgz mkdir cov-scan - tar ax -f coverity_tool.tgz --strip-components=1 -c cov-scan + tar ax -f coverity_tool.tgz --strip-components=1 -C cov-scan env: TOKEN: ${{ secrets.COVERITY_SCAN_TOKEN }} |