Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim-plugins.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '.ci/deploy.py')
-rw-r--r--.ci/deploy.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/.ci/deploy.py b/.ci/deploy.py
index a98c5f1..1ce78bb 100644
--- a/.ci/deploy.py
+++ b/.ci/deploy.py
@@ -70,7 +70,7 @@ def download_package_index() -> ManifestT:
def iter_manifests() -> Iterator[PackageT]:
- for path in REPO_ROOT.rglob('manifest.json'):
+ for path in REPO_ROOT.rglob('plugin-manifest.json'):
with path.open() as f:
manifest = json.load(f)
yield manifest, path.parent