This commit is contained in:
Mateusz Gruszczyński
2026-09-01 15:38:46 +02:00
parent 1392114c1e
commit 3000dbaf01
26 changed files with 7520 additions and 2299 deletions
+20
View File
@@ -0,0 +1,20 @@
#!/usr/bin/env bash
set -euo pipefail
cd "$(dirname "$0")"
MANIFEST="FILE_MANIFEST.sha256"
TMP="${MANIFEST}.tmp"
find . -type f \
! -path "./${MANIFEST}" \
! -path "./${TMP}" \
! -path "./.git/*" \
! -path "./target/*" \
-print0 \
| sort -z \
| xargs -0 sha256sum > "$TMP"
mv "$TMP" "$MANIFEST"
sha256sum -c "$MANIFEST"