diff options
author | ZyX <kp-pav@yandex.ru> | 2018-04-02 00:12:28 +0300 |
---|---|---|
committer | ZyX <kp-pav@yandex.ru> | 2018-04-02 00:16:22 +0300 |
commit | 6b84f7813cc98c7dfca7e751856af0cd2bdcf1ac (patch) | |
tree | 1b0bdea570d3cecc240d7c14aa934f2f621e2d3d | |
parent | 65d0b8ed32ac0a3123d93d2f78e4c236aa76283d (diff) | |
download | rneovim-6b84f7813cc98c7dfca7e751856af0cd2bdcf1ac.tar.gz rneovim-6b84f7813cc98c7dfca7e751856af0cd2bdcf1ac.tar.bz2 rneovim-6b84f7813cc98c7dfca7e751856af0cd2bdcf1ac.zip |
pvscheck: Also provide source tree root to plog-converter
-rwxr-xr-x | scripts/pvscheck.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/pvscheck.sh b/scripts/pvscheck.sh index ba7d87e983..54e6241d07 100755 --- a/scripts/pvscheck.sh +++ b/scripts/pvscheck.sh @@ -361,10 +361,10 @@ run_analysis() {( --file build/compile_commands.json \ --sourcetree-root . || true - plog-converter -t xml -o PVS-studio.xml PVS-studio.log - plog-converter -t errorfile -o PVS-studio.err PVS-studio.log - plog-converter -t tasklist -o PVS-studio.tsk PVS-studio.log - plog-converter -t fullhtml -o PVS-studio.html.d PVS-studio.log + plog-converter -r . -t xml -o PVS-studio.xml PVS-studio.log + plog-converter -r . -t errorfile -o PVS-studio.err PVS-studio.log + plog-converter -r . -t tasklist -o PVS-studio.tsk PVS-studio.log + plog-converter -r . -t fullhtml -o PVS-studio.html.d PVS-studio.log )} detect_url() { |