示例#1
0
 def __init__(self, command=False, **kwargs):
     if not command:
         command = ['bzr', 'tag', '-q', 
                 '-d', WithProperties("%(branch_url)s"),
                 '-r', WithProperties('%(revision_hash)s'),
                 WithProperties('%(failure_tag)s') ]
     MasterShellCommand.__init__(self, command, **kwargs)
示例#2
0
 def __init__(self, config, project, update_from_project, **kwargs):
     self.config = config
     self.project = project
     self.from_project = update_from_project
     MasterShellCommand.__init__(self,
                                 command=self.COMMAND,
                                 hideStepIf=ShowStepIfSuccessful,
                                 **kwargs)
示例#3
0
 def __init__(self, *args, **kwargs):
     MasterShellCommand.__init__(self, *args, **kwargs)
示例#4
0
 def __init__(self, *args, **kwargs):
     MasterShellCommand.__init__(self, *args, **kwargs)
示例#5
0
 def __init__(self, **kwargs):
     kwargs['command'] = 'cd /var/www/TaskCoach-packages/release\nzip release.zip *'
     MasterShellCommand.__init__(self, **kwargs)
示例#6
0
 def __init__(self, **kwargs):
     kwargs['command'] = 'rm -rf /var/www/TaskCoach-packages/release/*'
     MasterShellCommand.__init__(self, **kwargs)