Using custom build path relative to repo root rather than project root

pull/353/head
Frostebite 2022-04-09 13:38:15 +01:00
parent 305b2de34d
commit 2481d75d71
3 changed files with 3 additions and 3 deletions

2
dist/index.js vendored
View File

@ -2901,7 +2901,7 @@ class CloudRunnerFolders {
return path_1.default.join(CloudRunnerFolders.projectPathFull, `Library`); return path_1.default.join(CloudRunnerFolders.projectPathFull, `Library`);
} }
static get projectBuildFolderFull() { 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() { static get lfsDirectoryFull() {
return path_1.default.join(CloudRunnerFolders.repoPathFull, `.git`, `lfs`); return path_1.default.join(CloudRunnerFolders.repoPathFull, `.git`, `lfs`);

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -36,7 +36,7 @@ export class CloudRunnerFolders {
} }
public static get projectBuildFolderFull(): string { public static get projectBuildFolderFull(): string {
return path.join(CloudRunnerFolders.projectPathFull, `build`); return path.join(CloudRunnerFolders.repoPathFull, CloudRunner.buildParameters.buildPath);
} }
public static get lfsDirectoryFull(): string { public static get lfsDirectoryFull(): string {