Fix: post build caching, use linux path conversion

pull/461/head
Frostebite 2022-10-02 19:19:05 +01:00
parent b41839b2f5
commit e56abbdd40
3 changed files with 9 additions and 5 deletions

2
dist/index.js vendored
View File

@ -4188,8 +4188,10 @@ class RemoteClient {
});
}
static replaceLargePackageReferencesWithSharedReferences() {
if (cloud_runner_1.default.buildParameters.cloudRunnerIntegrationTests) {
cloud_runner_logger_1.default.log(fs_1.default.readFileSync(path_1.default.join(cloud_runner_folders_1.CloudRunnerFolders.projectPathAbsolute, `Packages/manifest.json`), 'utf8'));
}
}
static pullLatestLFS() {
return __awaiter(this, void 0, void 0, function* () {
process.chdir(cloud_runner_folders_1.CloudRunnerFolders.repoPathAbsolute);

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -86,10 +86,12 @@ export class RemoteClient {
}
static replaceLargePackageReferencesWithSharedReferences() {
if (CloudRunner.buildParameters.cloudRunnerIntegrationTests) {
CloudRunnerLogger.log(
fs.readFileSync(path.join(CloudRunnerFolders.projectPathAbsolute, `Packages/manifest.json`), 'utf8'),
);
}
}
private static async pullLatestLFS() {
process.chdir(CloudRunnerFolders.repoPathAbsolute);