Fix nested Library cache
parent
22dea2843a
commit
82310f7768
|
|
@ -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`;
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -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 {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue