bin/autoproj in autoproj-1.9.3.rc1 vs bin/autoproj in autoproj-1.9.3.rc2
- old
+ new
@@ -128,24 +128,22 @@
# package blocks, it is possible that it contains excluded / ignored
# packages
#
# First do the resolution to get auto-add, finalize the package
# configuration, and then re-resolve
- Autoproj.silent do
- begin
- Autoproj::CmdLine.resolve_user_selection(selected_packages)
- rescue Autoproj::Manifest::ExcludedSelection => e
- raise e, "#{e.selection}, which is selected on the command line, cannot be built: #{e.message}"
- end
+ begin
+ Autoproj::CmdLine.resolve_user_selection(selected_packages)
+ rescue Autoproj::Manifest::ExcludedSelection => e
+ raise e, "#{e.selection}, which is selected on the command line, cannot be built: #{e.message}"
end
# Now load the rest of the configuration
Autoproj::CmdLine.finalize_package_setup
# Finally, filter out exclusions
resolved_selected_packages =
begin
Autoproj::CmdLine.resolve_user_selection(selected_packages)
rescue Autoproj::Manifest::ExcludedSelection => e
- raise e, "#{e.sel}, which is selected on the command line, cannot be built: #{e.message}"
+ raise e, "#{e.selection}, which is selected on the command line, cannot be built: #{e.message}"
end
Autoproj::CmdLine.validate_user_selection(selected_packages, resolved_selected_packages)
if !selected_packages.empty?
command_line_selection = resolved_selected_packages.dup