Ejemplo n.º 1
0
    def VerifyPreliminaryBinaries(cls):
        Tools.Info("Checking preliminary binaries ...")

        # If the required binaries don't exist, then exit
        for binary in var.prel_bin:
            if not os.path.isfile(Tools.GetProgramPath(binary)):
                Tools.BinaryDoesntExist(binary)
Ejemplo n.º 2
0
 def VerifyBinariesExist(cls, vFiles):
     for file in vFiles:
         if not os.path.exists(file):
             Tools.BinaryDoesntExist(file)
Ejemplo n.º 3
0
 def VerifyBinariesExist(cls, vFiles):
     """Checks to see that all the binaries in the array exist and errors if they don't."""
     for file in vFiles:
         if not os.path.exists(file):
             Tools.BinaryDoesntExist(file)