Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a63837ac authored by Mohammed Althaf T's avatar Mohammed Althaf T 😊
Browse files

Fix code to fetch repos from e gitlab



Signed-off-by: default avataralthafvly <althafvly@gmail.com>
parent 0b5955de
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -331,9 +331,10 @@ if depsonly:
    sys.exit()

else:
    for repo_name in repositories:
    for repository in repositories:
        repo_name = repository['name']
        if re.match(r"^android_device_[^_]*_" + device + "$", repo_name):
            print("Found repository: %s" % repo_name)
            print("Found repository: %s" % repository['name'])
            
            manufacturer = repo_name.replace("android_device_", "").replace("_" + device, "")
            repo_path = "device/%s/%s" % (manufacturer, device)