mirror of
https://github.com/LmeSzinc/StarRailCopilot.git
synced 2024-12-03 12:23:53 +00:00
Fix: [ALAS] Should check current path first
This commit is contained in:
parent
2c859504ac
commit
701df396cc
@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user