From c3ba8f9bb664334873356d9d3aa2596e41db422d Mon Sep 17 00:00:00 2001 From: Baptiste Augrain Date: Tue, 18 Mar 2025 13:50:02 +0100 Subject: [PATCH] chore: move user patches last [skip ci] --- prepare_vscode.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/prepare_vscode.sh b/prepare_vscode.sh index e796c79..58e00af 100755 --- a/prepare_vscode.sh +++ b/prepare_vscode.sh @@ -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