Files
RedBear-OS/local/patches/base/reassemble-redox-patch.sh
T
vasilito 7726a3da36 fix: split redox.patch into 90MB chunks for GitHub push limit
redox.patch is 556MB, exceeding GitHub's 100MB file size limit.
Split into 7 chunks of ~90MB each under local/patches/base/redox-patch-chunks/.
Reassembly script: local/patches/base/reassemble-redox-patch.sh.
Added redox.patch to .gitignore to prevent future push failures.
2026-05-03 08:26:56 +01:00

13 lines
350 B
Bash
Executable File

#!/bin/bash
# Reassemble redox.patch from split chunks (needed because the full patch
# exceeds GitHub's 100 MB file size limit).
#
# Usage:
# cd local/patches/base/
# bash reassemble-redox-patch.sh
set -euo pipefail
cd "$(dirname "$0")"
cat redox-patch-chunks/chunk_* > redox.patch
echo "Reassembled redox.patch ($(wc -c < redox.patch) bytes)"