Fix: [ALAS] Should check current path first

This commit is contained in:
LmeSzinc 2024-07-03 00:46:21 +08:00
parent 2c859504ac
commit 701df396cc

View File

@ -8,7 +8,7 @@ import fs from 'fs';
*/
const getAlasABSPath = (
files: string[] = ['**/config/deploy.yaml', '**/config/deploy.template.yaml'],
rootName: string | string[] = ['AzurLaneAutoScript', 'Alas', 'StarRailCopilot'],
rootName: string | string[] = ['AzurLaneAutoScript', 'Alas', 'StarRailCopilot', 'SRC'],
) => {
const path = require('path');
const sep = path.sep;
@ -53,7 +53,6 @@ const getAlasABSPath = (
const appAbsPathArr = appAbsPath.split(sep);
let flag = false;
while (step > 0 && !flag) {
appAbsPathArr.pop();
const entries = fg.sync(files, {
dot: true,
cwd: appAbsPathArr.join(sep) as string,
@ -63,6 +62,7 @@ const getAlasABSPath = (
alasABSPath = appAbsPathArr.join(sep);
}
step--;
appAbsPathArr.pop();
}
}