Debug cache extract
parent
7571aa56ac
commit
a7ce7acbc2
|
|
@ -632,7 +632,7 @@ class Caching {
|
|||
if (__1.Input.cloudRunnerTests) {
|
||||
yield cloud_runner_system_1.CloudRunnerSystem.Run(`tree ${cacheFolder}`);
|
||||
}
|
||||
fs_1.default.createReadStream(`${path_1.default.join(cacheFolder, cacheSelection)}.zip`).pipe(unzipper_1.default.Extract({ path: resultsDirectory }));
|
||||
fs_1.default.createReadStream(`${path_1.default.join(fullDestination, cacheSelection)}.zip`).pipe(unzipper_1.default.Extract({ path: resultsDirectory }));
|
||||
if (__1.Input.cloudRunnerTests) {
|
||||
yield cloud_runner_system_1.CloudRunnerSystem.Run(`tree ${fullDestination}`);
|
||||
}
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -105,7 +105,7 @@ export class Caching {
|
|||
if (Input.cloudRunnerTests) {
|
||||
await CloudRunnerSystem.Run(`tree ${cacheFolder}`);
|
||||
}
|
||||
fs.createReadStream(`${path.join(cacheFolder, cacheSelection)}.zip`).pipe(
|
||||
fs.createReadStream(`${path.join(fullDestination, cacheSelection)}.zip`).pipe(
|
||||
unzipper.Extract({ path: resultsDirectory }),
|
||||
);
|
||||
if (Input.cloudRunnerTests) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue