From 2f1858d10eb8d11133684fd4f200617e55b71e23 Mon Sep 17 00:00:00 2001 From: Aere Network Date: Sat, 15 Aug 2026 13:21:42 +0300 Subject: [PATCH] gitattributes: genesis, patches and vectors are byte streams, never line-ending converted A Windows checkout was silently rewriting genesis.json to CRLF, so the working-copy hash stopped matching the published and fleet hash, and the package gate went red on a file whose bytes in git were correct. bd4f8b4 fixed this once by re-adding the file; this pins the rule so no checkout can undo it again. --- .gitattributes | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..0da0d92 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,3 @@ +genesis.json -text +patches/*.patch -text +vectors/** -text