File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed
cookbooks/ros2_windows/recipes Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change 32
32
# Install scripts finds and installs the most recent LTS version
33
33
error_filename = File . join ( Dir . home ( ) , "qt_install.err" )
34
34
35
+ # Update maintenance tool first, if necessary
36
+ windows_package 'Qt Maintenance Update' do
37
+ source 'c:\\Qt\\MaintenanceTool.exe'
38
+ installer_type :custom
39
+ # I couldn't find documentation, but return codes don't seem to correspond with an actual failure.
40
+ # Instead error information is written to the ErrorLogname below
41
+ returns [ 0 ]
42
+ options 'up qt.tools.maintenance'
43
+ timeout 600
44
+ only_if { ::File . exist? ( 'c:\\Qt\\MaintenanceTool.exe' ) }
45
+ end
46
+
35
47
windows_package 'Qt Maintenance' do
36
48
source 'c:\\Qt\\MaintenanceTool.exe'
37
49
installer_type :custom
You can’t perform that action at this time.
0 commit comments