removed unnecessary comments

This commit is contained in:
biersoeckli
2024-12-16 11:11:32 +00:00
parent 6e4d9d95d4
commit 8bf38e7914

View File

@@ -75,17 +75,13 @@ class PodService {
async ({ status }) => {
try {
writerStream.close();
if (status === 'Failure' /* || stderrStream.size()*/) {
if (status === 'Failure') {
return reject(
new Error(
`Error from cpFromPod - details: \n ${stderrStream.read().toString()}`,
),
);
}
/*await tar.x({
file: tmpFileName,
cwd: tgtPath,
});*/
resolve();
} catch (e) {
reject(e);