Fix nested Library cache

pull/310/head
Frostebite 2022-01-11 12:41:21 +00:00
parent 22dea2843a
commit 82310f7768
3 changed files with 3 additions and 3 deletions

2
dist/index.js vendored
View File

@ -2823,7 +2823,7 @@ class CloudRunnerState {
return path_1.default.join(CloudRunnerState.cacheFolderFull, `lfs`); return path_1.default.join(CloudRunnerState.cacheFolderFull, `lfs`);
} }
static get libraryCacheFolderFull() { static get libraryCacheFolderFull() {
return path_1.default.join(CloudRunnerState.cacheFolderFull, `lib`); return path_1.default.join(CloudRunnerState.cacheFolderFull, `Library`);
} }
static get unityBuilderRepoUrl() { static get unityBuilderRepoUrl() {
return `https://${CloudRunnerState.buildParams.githubToken}@github.com/game-ci/unity-builder.git`; return `https://${CloudRunnerState.buildParams.githubToken}@github.com/game-ci/unity-builder.git`;

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -60,7 +60,7 @@ export class CloudRunnerState {
} }
public static get libraryCacheFolderFull() { public static get libraryCacheFolderFull() {
return path.join(CloudRunnerState.cacheFolderFull, `lib`); return path.join(CloudRunnerState.cacheFolderFull, `Library`);
} }
public static get unityBuilderRepoUrl(): string { public static get unityBuilderRepoUrl(): string {