From bb1b5f5f863fca0e85764f5b35c117f5724d15c0 Mon Sep 17 00:00:00 2001 From: Conley Owens Date: Mon, 13 Aug 2012 13:11:18 -0700 Subject: Allow projects to be specified as notdefault Instead of every group being in the group "default", every project is now in the group "all". A group that should not be downloaded by default may be added to the group "notdefault". This allows all group names to be positive (instead of removing groups directly in the manifest with -default) and offers a clear way of selecting every project (--groups all). Change-Id: I99cd70309adb1f8460db3bbc6eff46bdcd22256f --- command.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'command.py') diff --git a/command.py b/command.py index 4dbe2e77..5789582c 100644 --- a/command.py +++ b/command.py @@ -70,7 +70,7 @@ class Command(object): groups = mp.config.GetString('manifest.groups') if not groups: - groups = 'default,platform-' + platform.system().lower() + groups = 'all,-notdefault,platform-' + platform.system().lower() groups = [x for x in re.split('[,\s]+', groups) if x] if not args: -- cgit v1.2.3-54-g00ecf