Example #1
0
 def get_sub_commands(self):
     super_cmds = du_build.get_sub_commands(self)
     my_cmds = [
         BuildProductionResourcesCommand.command_name,
         BuildMessagesCommand.command_name,
     ]
     return my_cmds + super_cmds
Example #2
0
 def get_sub_commands(self):
     super_cmds = du_build.get_sub_commands(self)
     my_cmds = [
         BuildProductionResourcesCommand.command_name,
         BuildMessagesCommand.command_name,
     ]
     return my_cmds + super_cmds
Example #3
0
 def get_sub_commands(self):
     # Force "build_ext" invocation.
     commands = build.get_sub_commands(self)
     for c in commands:
         if c == 'build_ext':
             return commands
     return ['build_ext'] + commands
Example #4
0
 def get_sub_commands(self):
     # Force "build_ext" invocation.
     commands = build.get_sub_commands(self)
     for c in commands:
         if c == 'build_ext':
             return commands
     return ['build_ext'] + commands
Example #5
0
 def get_sub_commands(self):
     # Force "build_clib"/"build_ext" invocation.
     commands = build.get_sub_commands(self)
     if 'build_ext' not in commands:
         commands.insert(0, 'build_ext')
     if 'build_clib' not in commands:
         commands.insert(0, 'build_clib')
     return commands
Example #6
0
 def get_sub_commands(self):
     sub_commands = _build.get_sub_commands(self)
     print sub_commands
     return [
         ('compile_catalog', None),
     ] + sub_commands
Example #7
0
 def get_sub_commands(self):
     return _build.get_sub_commands(self) + ["build_doc"]
Example #8
0
 def get_sub_commands(self):
   return _build.get_sub_commands(self) + ["build_doc"]
Example #9
0
 def get_sub_commands(self):
     sub_commands = _build.get_sub_commands(self)
     print sub_commands
     return [('compile_catalog', None), ] + sub_commands