Can packages be chosen with vsctool or only --packages-up-to?
Colcon allows to limit the building of a workspace by specifying --packages-up-to
. However I am wondering if there's a way to limit vsctool
from downloading all packages in a repository.
For example: In the Autoware Universe repo, under the perception directory, there's a number of packages. By specifying it in the .repos
file:
universe/autoware.universe:
type: git
url: https://github.com/autowarefoundation/autoware.universe.git
version: main
vsctool will bring in all directories under this repository.
Assuming we are only interested in the traffic_light_classifier
(and its dependencies), is there a way to specify this in the .repos
file, or is --packages-up-to
the only viable option?