chore: move user patches last [skip ci]

This commit is contained in:
Baptiste Augrain
2025-03-18 13:50:02 +01:00
parent 5ca1fc84d3
commit c3ba8f9bb6

View File

@@ -35,12 +35,6 @@ if [[ "${VSCODE_QUALITY}" == "insider" ]]; then
done
fi
for file in ../patches/user/*.patch; do
if [[ -f "${file}" ]]; then
apply_patch "${file}"
fi
done
if [[ -d "../patches/${OS_NAME}/" ]]; then
for file in "../patches/${OS_NAME}/"*.patch; do
if [[ -f "${file}" ]]; then
@@ -49,6 +43,12 @@ if [[ -d "../patches/${OS_NAME}/" ]]; then
done
fi
for file in ../patches/user/*.patch; do
if [[ -f "${file}" ]]; then
apply_patch "${file}"
fi
done
set -x
export ELECTRON_SKIP_BINARY_DOWNLOAD=1