From a4c88374ad04331db595fdea790276cc26b0c6e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Steven!=20Ragnaro=CC=88k?= Date: Fri, 9 Oct 2020 15:25:30 -0700 Subject: [PATCH] Unpin cppcheck 1.90. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This will install the latest version of cppcheck available from chocolatey. Replaces ros2/ci#480's direct revert. Signed-off-by: Steven! Ragnarök --- cookbooks/ros2_windows/recipes/chocolatey_installs.rb | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/cookbooks/ros2_windows/recipes/chocolatey_installs.rb b/cookbooks/ros2_windows/recipes/chocolatey_installs.rb index 3e475e6..f489861 100644 --- a/cookbooks/ros2_windows/recipes/chocolatey_installs.rb +++ b/cookbooks/ros2_windows/recipes/chocolatey_installs.rb @@ -1,11 +1,7 @@ -%w[git cmake curl vcredist2013 vcredist140 patch].each do |pkg| +%w[git cmake cppcheck curl vcredist2013 vcredist140 patch].each do |pkg| chocolatey_package pkg end -chocolatey_package 'cppcheck' do - version '1.90' -end - windows_env 'PATH' do key_name 'PATH' value 'C:\\Program Files\\Git\\cmd;C:\\Program Files\\CMake\\bin'