def __init__(self, args, cmd): self.args = args util.log_java_version() logging.info(util.run_cmd_ignore_fail(['buck', '--version'])) self.cmd = cmd[2:] # TODO: make the extraction of targets smarter
def __init__(self, args, cmd): self.args = args util.log_java_version() logging.info(util.run_cmd_ignore_fail(['ant', '-version'])) # TODO: make the extraction of targets smarter self.build_cmd = ['ant', '-verbose'] + cmd[1:]
def __init__(self, args, cmd): self.args = args self.cmd = cmd util.log_java_version() logging.info(util.run_cmd_ignore_fail(['buck', '--version']))