fix(1.100): update patches and use node 20.19 (#2345)

This commit is contained in:
Baptiste Augrain
2025-04-26 03:50:42 +02:00
committed by GitHub
parent b2ed4911fa
commit 7f17b5ca0e
16 changed files with 146 additions and 122 deletions

View File

@@ -38,6 +38,10 @@ else
fi
if [[ -f "${FILE}" ]]; then
if [[ -f "${FILE}.bak" ]]; then
mv -f $FILE{.bak,}
fi
git apply --reject "${FILE}" || true
fi

View File

@@ -19,6 +19,10 @@ check_file() {
shift
done
if [[ -f "${1}.bak" ]]; then
mv -f $1{.bak,}
fi
if [[ -f "${1}" ]]; then
echo applying patch: "${1}"
if ! git apply --ignore-whitespace "${1}"; then