示例#1
0
文件: Tool.py 项目: 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()
示例#2
0
文件: Tool.py 项目: 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()