Using custom build path relative to repo root rather than project root
parent
305b2de34d
commit
2481d75d71
|
|
@ -2901,7 +2901,7 @@ class CloudRunnerFolders {
|
|||
return path_1.default.join(CloudRunnerFolders.projectPathFull, `Library`);
|
||||
}
|
||||
static get projectBuildFolderFull() {
|
||||
return path_1.default.join(CloudRunnerFolders.projectPathFull, `build`);
|
||||
return path_1.default.join(CloudRunnerFolders.repoPathFull, __1.CloudRunner.buildParameters.buildPath);
|
||||
}
|
||||
static get lfsDirectoryFull() {
|
||||
return path_1.default.join(CloudRunnerFolders.repoPathFull, `.git`, `lfs`);
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -36,7 +36,7 @@ export class CloudRunnerFolders {
|
|||
}
|
||||
|
||||
public static get projectBuildFolderFull(): string {
|
||||
return path.join(CloudRunnerFolders.projectPathFull, `build`);
|
||||
return path.join(CloudRunnerFolders.repoPathFull, CloudRunner.buildParameters.buildPath);
|
||||
}
|
||||
|
||||
public static get lfsDirectoryFull(): string {
|
||||
|
|
|
|||
Loading…
Reference in New Issue