We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eef04ef commit 7cb55a6Copy full SHA for 7cb55a6
lib/arduino_ci/cpp_library.rb
@@ -410,9 +410,9 @@ def all_arduino_library_dependencies!(additional_libraries = [])
410
recursive = (additional_libraries + arduino_library_dependencies).map do |n|
411
other_lib = self.class.new(n, @backend)
412
other_lib.install unless other_lib.installed?
413
- other_lib.all_arduino_library_dependencies!
+ [n] + other_lib.all_arduino_library_dependencies!
414
end.flatten
415
- (additional_libraries + recursive).uniq
+ recursive.uniq
416
end
417
418
# Arduino library directories containing sources -- only those of the dependencies
0 commit comments