You've already forked PythonLib
mirror of
https://github.com/lifebottle/PythonLib.git
synced 2026-02-13 15:25:50 -08:00
Update parameters of generate_xdelta_patch
This commit is contained in:
@@ -48,11 +48,12 @@ class ToolsTales:
|
||||
with open("../{}/Data/{}/Menu/MenuFiles.json".format(repo_name, gameName)) as f:
|
||||
self.menu_files_json = json.load(f)
|
||||
|
||||
def generate_xdelta_patch(repo_name, xdelta_name):
|
||||
|
||||
def generate_xdelta_patch(self, xdelta_name):
|
||||
|
||||
|
||||
print("Create xdelta patch")
|
||||
original_path = "../Data/{}/Disc/Original/{}.iso".format(repo_name, repo_name)
|
||||
new_path = "../Data/{}/Disc/New/{}.iso".format(repo_name, repo_name)
|
||||
original_path = "../Data/{}/Disc/Original/{}.iso".format(self.repo_name, self.repo_name)
|
||||
new_path = "../Data/{}/Disc/New/{}.iso".format(self.repo_name, self.repo_name)
|
||||
subprocess.run(["xdelta", "-f", "-s", original_path, new_path, xdelta_name])
|
||||
|
||||
def mkdir(self, d):
|
||||
|
||||
Binary file not shown.
Reference in New Issue
Block a user