fix(ruview): canonicalize manifest line endings

This commit is contained in:
ruv
2026-07-28 23:43:10 -04:00
parent 989e663578
commit dac6152997
4 changed files with 28 additions and 26 deletions
+2 -1
View File
@@ -10,6 +10,7 @@ const ROOT = dirname(dirname(fileURLToPath(import.meta.url)));
const quiet = process.argv.includes('--quiet');
const INCLUDE = ['package.json', 'bin', 'src', 'skills', '.claude', '.mcp', '.harness/claims.json', '.harness/mcp-policy.json', 'brain', 'flywheel', 'scripts', 'CLAUDE.md', 'README.md', 'LICENSE'];
const sha = (value) => createHash('sha256').update(value).digest('hex');
const canonicalFile = (path) => readFileSync(path, 'utf8').replace(/\r\n/g, '\n');
const files = [];
function walk(path) {
const stat = statSync(path);
@@ -18,7 +19,7 @@ function walk(path) {
} else files.push(path);
}
for (const entry of INCLUDE) walk(join(ROOT, entry));
const hashes = Object.fromEntries(files.sort().map((path) => [relative(ROOT, path).replaceAll('\\', '/'), sha(readFileSync(path))]));
const hashes = Object.fromEntries(files.sort().map((path) => [relative(ROOT, path).replaceAll('\\', '/'), sha(canonicalFile(path))]));
const pkg = JSON.parse(readFileSync(join(ROOT, 'package.json'), 'utf8'));
const manifest = {
schema: 2,
+2 -1
View File
@@ -6,6 +6,7 @@ import { fileURLToPath } from 'node:url';
const ROOT = dirname(dirname(fileURLToPath(import.meta.url)));
const quiet = process.argv.includes('--quiet');
const sha = (value) => createHash('sha256').update(value).digest('hex');
const canonicalFile = (path) => readFileSync(path, 'utf8').replace(/\r\n/g, '\n');
const path = join(ROOT, '.harness', 'manifest.json');
const raw = readFileSync(path);
const manifest = JSON.parse(raw);
@@ -13,7 +14,7 @@ const findings = [];
for (const [name, expected] of Object.entries(manifest.files || {})) {
const target = join(ROOT, name);
if (!existsSync(target)) findings.push(`${name}:missing`);
else if (sha(readFileSync(target)) !== expected) findings.push(`${name}:hash-mismatch`);
else if (sha(canonicalFile(target)) !== expected) findings.push(`${name}:hash-mismatch`);
}
const expectedOuter = readFileSync(join(ROOT, '.harness', 'manifest.sha256'), 'utf8').trim().split(/\s+/)[0];
if (sha(raw) !== expectedOuter) findings.push('manifest.sha256:mismatch');