Esempio n. 1
0
File: Tool.py Progetto: u53r55/jok3r
    def getUpdateCmd(self):
        """
		Build update command
		@Returns	Update command-line
		"""
        c = Command(self.tool_dir, self.update, None, self.toolbox_dir, None,
                    None, None, None)
        return c.getParsedInstallCommandLine()
Esempio n. 2
0
File: Tool.py Progetto: u53r55/jok3r
    def getInstallCmd(self):
        """
		Build install command
		@Returns	Install command-line
		"""
        c = Command(self.tool_dir, self.install, None, self.toolbox_dir, None,
                    None, None, None)
        return c.getParsedInstallCommandLine()