Example #1
0
    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
Example #2
0
 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:]
Example #3
0
 def __init__(self, args, cmd):
     self.args = args
     self.cmd = cmd
     util.log_java_version()
     logging.info(util.run_cmd_ignore_fail(['buck', '--version']))
Example #4
0
 def __init__(self, args, cmd):
     self.args = args
     self.cmd = cmd
     util.log_java_version()
     logging.info(util.run_cmd_ignore_fail(['buck', '--version']))
Example #5
0
File: ant.py Project: ryoon/infer
 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:]