Debug cache extract

pull/310/head
Frostebite 2022-01-13 23:00:09 +00:00
parent 1785f41484
commit dfcc5cfde8
3 changed files with 3 additions and 3 deletions

2
dist/index.js vendored
View File

@ -615,7 +615,7 @@ class Caching {
remote_client_logger_1.RemoteClientLogger.log(`cache item exists ${cacheFolder}/${cacheSelection}.zip`);
console_1.assert(`${fs_1.default.existsSync(destinationFolder)}`);
console_1.assert(`${fs_1.default.existsSync(`${cacheSelection}.zip`)}`);
const fullDestination = path_1.default.join(process.cwd(), path_1.default.basename(destinationFolder), `results`);
const fullDestination = path_1.default.join(destinationFolder, `results`);
if (__1.Input.cloudRunnerTests) {
yield cloud_runner_system_1.CloudRunnerSystem.Run(`tree ${cacheFolder}`);
}

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -100,7 +100,7 @@ export class Caching {
RemoteClientLogger.log(`cache item exists ${cacheFolder}/${cacheSelection}.zip`);
assert(`${fs.existsSync(destinationFolder)}`);
assert(`${fs.existsSync(`${cacheSelection}.zip`)}`);
const fullDestination = path.join(process.cwd(), path.basename(destinationFolder), `results`);
const fullDestination = path.join(destinationFolder, `results`);
if (Input.cloudRunnerTests) {
await CloudRunnerSystem.Run(`tree ${cacheFolder}`);
}