File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -333,8 +333,8 @@ def get_annotated_compilers(config, cpp_library)
333
333
#
334
334
# This feature is to drive GitHub actions / docker image installation where the container is
335
335
# in a clean-slate state but needs some way to have custom library versions injected into it.
336
- # In this case, the user provided script would fetch a git repo or some other method
337
- def perform_custom_initialization ( _config )
336
+ # In this case, the user provided script would fetch a git repo or some other method.
337
+ def perform_custom_initialization ( )
338
338
script_path = ENV [ VAR_CUSTOM_INIT_SCRIPT ]
339
339
inform ( "Environment variable #{ VAR_CUSTOM_INIT_SCRIPT } " ) { "'#{ script_path } '" }
340
340
return if script_path . nil?
@@ -567,7 +567,7 @@ def perform_example_compilation_tests(cpp_library, config)
567
567
end
568
568
569
569
# run any library init scripts from the library itself.
570
- perform_custom_initialization ( config )
570
+ perform_custom_initialization ( )
571
571
572
572
# initialize library under test
573
573
inform ( "Environment variable #{ VAR_USE_SUBDIR } " ) { "'#{ ENV [ VAR_USE_SUBDIR ] } '" }
You can’t perform that action at this time.
0 commit comments