Browse Source

Extract Clash previous build result

SukkaW 2 years ago
parent
commit
ce61f67e63
1 changed files with 2 additions and 2 deletions
  1. 2 2
      Build/download-previous-build.js

+ 2 - 2
Build/download-previous-build.js

@@ -16,7 +16,7 @@ const fileExists = (path) => {
 };
 };
 
 
 (async () => {
 (async () => {
-  const filesList = [];
+  const filesList = ['Clash', 'List'];
 
 
   let allFileExists = true;
   let allFileExists = true;
 
 
@@ -60,7 +60,7 @@ const fileExists = (path) => {
       cwd: extractedPath,
       cwd: extractedPath,
       filter(p) {
       filter(p) {
         const dir = p.split('/')[1];
         const dir = p.split('/')[1];
-        return dir === 'List' || dir === 'Modules';
+        return dir === 'List' || dir === 'Modules' || dir === 'Clash';
       }
       }
     })
     })
   );
   );