Forráskód Böngészése

chore: move user patches last [skip ci]

Baptiste Augrain 2 hónapja
szülő
commit
c3ba8f9bb6
1 módosított fájl, 6 hozzáadás és 6 törlés
  1. 6 6
      prepare_vscode.sh

+ 6 - 6
prepare_vscode.sh

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