Remove some debug stuff

This commit is contained in:
Fierelier 2021-06-16 12:56:51 +02:00
parent bc16466585
commit a8ce94197f

View File

@ -184,7 +184,6 @@ def processVersion(versionsPath,libraryPath,nativePath,version):
l["url"] = l["url"] + "/" + l["filePath"] l["url"] = l["url"] + "/" + l["filePath"]
if "natives" in library: if "natives" in library:
input(library)
l["type"] = "native" l["type"] = "native"
if lv["osName"] in library["natives"]: if lv["osName"] in library["natives"]:
native = library["natives"][lv["osName"]] native = library["natives"][lv["osName"]]
@ -198,7 +197,6 @@ def processVersion(versionsPath,libraryPath,nativePath,version):
l["filePath"] = l["filePath"][:-4] + "-" + native + ".jar" l["filePath"] = l["filePath"][:-4] + "-" + native + ".jar"
l["url"] = l["url"][:-4] + "-" + native + ".jar" l["url"] = l["url"][:-4] + "-" + native + ".jar"
l["filePathOS"] = p(nativePath,l["filePath"].replace("/",os.path.sep)) l["filePathOS"] = p(nativePath,l["filePath"].replace("/",os.path.sep))
#input(l)
else: else:
l["filePathOS"] = p(libraryPath,l["filePath"].replace("/",os.path.sep)) l["filePathOS"] = p(libraryPath,l["filePath"].replace("/",os.path.sep))
libraries.append(l) libraries.append(l)