From a706a2cc320c9d47f2d32b487b0dee15971bcfc7 Mon Sep 17 00:00:00 2001 From: Jonathan Miller <1+jmiller@noreply.git.mokoconsulting.tech> Date: Thu, 21 May 2026 22:19:49 +0000 Subject: [PATCH] refactor: MokoGiteaAdapter + manifest.xml primary lookup (#32) --- cli/manifest_read.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cli/manifest_read.php b/cli/manifest_read.php index 19444c9..d5837f9 100644 --- a/cli/manifest_read.php +++ b/cli/manifest_read.php @@ -47,11 +47,11 @@ foreach ($argv as $i => $arg) { $root = realpath($path) ?: $path; $manifestFile = null; -// Priority: .manifest.xml > .moko-platform (backward compat) +// Priority: manifest.xml (current standard) $candidates = [ - "{$root}/.mokogitea/.manifest.xml", - "{$root}/.mokogitea/.moko-platform", - "{$root}/.mokogitea/.mokostandards", // legacy v4 + "{$root}/.mokogitea/manifest.xml", + "{$root}/.mokogitea/.manifest.xml", // legacy (dot-prefixed) + "{$root}/.mokogitea/.moko-platform", // legacy v4 ]; foreach ($candidates as $candidate) {