move results directory subcontents explicitly
parent
a07f8d4e6c
commit
a2ab870e8f
|
|
@ -603,7 +603,7 @@ class Caching {
|
|||
yield cloud_runner_system_1.CloudRunnerSystem.Run(`unzip ${cacheSelection}.zip -d ${path_1.default.basename(resultsDirectory)}`);
|
||||
remote_client_logger_1.RemoteClientLogger.log(`cache item extracted to ${fullDestination}`);
|
||||
console_1.assert(`${fs_1.default.existsSync(fullDestination)}`);
|
||||
yield cloud_runner_system_1.CloudRunnerSystem.Run(`mv "${fullDestination}/{,.[^.]}*" "${destinationFolder}"`);
|
||||
yield cloud_runner_system_1.CloudRunnerSystem.Run(`mv "${fullDestination}/*" "${destinationFolder}"`);
|
||||
fs_1.default.rmdirSync(fullDestination);
|
||||
}
|
||||
else {
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -77,7 +77,7 @@ export class Caching {
|
|||
await CloudRunnerSystem.Run(`unzip ${cacheSelection}.zip -d ${path.basename(resultsDirectory)}`);
|
||||
RemoteClientLogger.log(`cache item extracted to ${fullDestination}`);
|
||||
assert(`${fs.existsSync(fullDestination)}`);
|
||||
await CloudRunnerSystem.Run(`mv "${fullDestination}/{,.[^.]}*" "${destinationFolder}"`);
|
||||
await CloudRunnerSystem.Run(`mv "${fullDestination}/*" "${destinationFolder}"`);
|
||||
fs.rmdirSync(fullDestination);
|
||||
} else {
|
||||
RemoteClientLogger.logWarning(`cache item ${cacheKey} doesn't exist ${destinationFolder}`);
|
||||
|
|
|
|||
Loading…
Reference in New Issue