lib/autoproj/cli/inspection_tool.rb in autoproj-2.2.0 vs lib/autoproj/cli/inspection_tool.rb in autoproj-2.2.1
- old
+ new
@@ -28,18 +28,18 @@
#
# @return [(Array<String>,PackageSelection,Boolean)] the list of
# selected packages, the PackageSelection representing the
# selection resolution itself, and a flag telling whether some of
# the arguments were pointing within the configuration area
- def finalize_setup(packages = [], non_imported_packages: :ignore, recursive: true)
+ def finalize_setup(packages = [], non_imported_packages: :ignore, recursive: true, auto_exclude: false)
Autoproj.silent do
packages, config_selected = normalize_command_line_package_selection(packages)
# Call resolve_user_selection once to auto-add packages, so
# that they're available to e.g. overrides.rb
resolve_user_selection(packages)
ws.finalize_package_setup
source_packages, osdep_packages, resolved_selection =
- resolve_selection(packages, recursive: recursive, non_imported_packages: non_imported_packages)
+ resolve_selection(packages, recursive: recursive, non_imported_packages: non_imported_packages, auto_exclude: auto_exclude)
ws.finalize_setup
ws.export_installation_manifest
return source_packages, osdep_packages, resolved_selection, config_selected
end
end