Fixed location

This commit is contained in:
Dimitris Zlatanidis 2023-03-31 21:20:55 +03:00
parent 90d4da7434
commit cbfa9c2aba

View file

@ -134,7 +134,7 @@ class InstallData(Configs):
if line.startswith(pkg_tag[1]):
package_location = line.replace(pkg_tag[1], '').strip()
cache.append(package_location[1:]) # Do not install (.) dot
cache.append(package_location[2:]) # Do not install (.) dot
if line.startswith(pkg_tag[2]):
package_size_comp = line.replace(pkg_tag[2], '').strip()
@ -224,7 +224,7 @@ class InstallData(Configs):
if line.startswith(pkg_tag[1]):
package_location = line.replace(pkg_tag[1], '').strip()
cache.append(package_location[1:]) # Do not install (.) dot
cache.append(package_location[2:]) # Do not install (./) dot
if line.startswith(pkg_tag[2]):
package_size_comp = line.replace(pkg_tag[2], '').strip()
@ -310,7 +310,7 @@ class InstallData(Configs):
if line.startswith(pkg_tag[1]):
package_location = line.replace(pkg_tag[1], '').strip()
cache.append(package_location[1:]) # Do not install (.) dot
cache.append(package_location[2:]) # Do not install (./) dot
if line.startswith(pkg_tag[2]):
package_size_comp = line.replace(pkg_tag[2], '').strip()
@ -570,7 +570,7 @@ class InstallData(Configs):
if line.startswith(pkg_tag[1]):
package_location = line.replace(pkg_tag[1], '').strip()
cache.append(package_location[1:]) # Do not install (.) dot
cache.append(package_location[2:]) # Do not install (./) dot
if line.startswith(pkg_tag[2]):
package_size_comp = line.replace(pkg_tag[2], '').strip()
@ -747,7 +747,7 @@ class InstallData(Configs):
if line.startswith(pkg_tag[1]):
package_location = line.replace(pkg_tag[1], '').strip()
cache.append(package_location[1:]) # Do not install (.) dot
cache.append(package_location[2:]) # Do not install (./) dot
if line.startswith(pkg_tag[2]):
package_size_comp = line.replace(pkg_tag[2], '').strip()
@ -847,7 +847,7 @@ class InstallData(Configs):
if line.startswith(pkg_tag[1]):
package_location = line.replace(pkg_tag[1], '').strip()
cache.append(package_location[1:]) # Do not install (.) dot
cache.append(package_location[2:]) # Do not install (./) dot
if line.startswith(pkg_tag[2]):
package_size_comp = line.replace(pkg_tag[2], '').strip()
@ -946,7 +946,7 @@ class InstallData(Configs):
if line.startswith(pkg_tag[1]):
package_location = line.replace(pkg_tag[1], '').strip()
cache.append(package_location[1:]) # Do not install (.) dot
cache.append(package_location[2:]) # Do not install (./) dot
if line.startswith(pkg_tag[2]):
package_size_comp = line.replace(pkg_tag[2], '').strip()