mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-12-31 10:26:39 +01:00
Fixed location
This commit is contained in:
parent
90d4da7434
commit
cbfa9c2aba
1 changed files with 7 additions and 7 deletions
|
@ -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()
|
||||
|
|
Loading…
Reference in a new issue