Skip to content

Commit

Permalink
Fixed pvs version.
Browse files Browse the repository at this point in the history
████ ███  To request new features or in case this commit breaks something for you,
████ ███  please, create a new github issue with all possible information for me,
▓███▀█▄   but never share your API Keys!
▒▓██ ███
░▒▓█ ███  Signed-off-by: Carles Tubio <[email protected]>
 _________________________________________
/ Hello, WORLD!                           \
|                                         |
\ pssst.. 1.00000000 BTC = 93626.36 EUR.  /
 -----------------------------------------
        \   ^__^
         \  (oo)\_______
            (__)\       )\/\
                ||----w |
                ||     ||
  • Loading branch information
ctubio committed Nov 22, 2024
1 parent d446ebe commit a3fa7b9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ K ?= K.sh
MAJOR = 0
MINOR = 7
PATCH = 0
BUILD = 51
BUILD = 52

OBLIGATORY = DISCLAIMER: This is strict non-violent software: \n$\
if you hurt other living creatures, please stop; \n$\
Expand Down
10 changes: 5 additions & 5 deletions src/lib/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -108,12 +108,12 @@ uv:

pvs:
ifndef V_PVS
$(MAKE) $@ V_PVS=$(shell curl -s https://pvs-studio.com/en/pvs-studio/download-all/ | grep x86_64.tgz | cut -d'"' -f2 | cut -d'.' -f-4 | cut -d'-' -f3- | head -n1)
$(MAKE) $@ V_PVS=$(shell curl -s https://pvs-studio.com/en/pvs-studio/download-all/ | grep x86_64.tgz | cut -d'"' -f2 | cut -d'-' -f2- | cut -d'.' -f-4 | head -n1)
else
test -d $(KBUILD)/var/pvs-studio-$(V_PVS) || ( \
curl -L https://files.pvs-studio.com/pvs-studio-$(V_PVS).tgz \
| tar xz -C $(KBUILD)/var && cd $(KBUILD)/var/pvs-studio-$(V_PVS) \
&& chmod +x install.sh && sudo ./install.sh )
test -d $(KBUILD)/var/pvs-$(V_PVS) || ( \
curl -L https://files.pvs-studio.com/pvs-$(V_PVS).tgz \
| tar xz -C $(KBUILD)/var && cd $(KBUILD)/var/pvs-$(V_PVS) \
&& chmod +x install.sh && sudo ./install.sh )
endif

lcov:
Expand Down

0 comments on commit a3fa7b9

Please sign in to comment.