summaryrefslogtreecommitdiffstats
path: root/command.py
diff options
context:
space:
mode:
Diffstat (limited to 'command.py')
-rw-r--r--command.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/command.py b/command.py
index 2ee0a43a..936ab408 100644
--- a/command.py
+++ b/command.py
@@ -15,6 +15,7 @@
15 15
16import os 16import os
17import optparse 17import optparse
18import platform
18import re 19import re
19import sys 20import sys
20 21
@@ -69,7 +70,7 @@ class Command(object):
69 70
70 groups = mp.config.GetString('manifest.groups') 71 groups = mp.config.GetString('manifest.groups')
71 if groups is None: 72 if groups is None:
72 groups = 'default' 73 groups = 'default,platform-' + platform.system().lower()
73 groups = [x for x in re.split('[,\s]+', groups) if x] 74 groups = [x for x in re.split('[,\s]+', groups) if x]
74 75
75 if not args: 76 if not args: