cleanup tmp files after import

cleanup_stuff
Jon Eugster 3 years ago
parent f6a2632d80
commit 23b1074aa2

@ -108,12 +108,11 @@ async function doImport (owner, repo, id) {
} catch (e) { } catch (e) {
progress[id].output += `Error: ${e.toString()}\n${e.stack}` progress[id].output += `Error: ${e.toString()}\n${e.stack}`
} finally { } finally {
// if (artifactId) { // clean-up temp. files
// // fs.rmSync(`tmp/artifact_${artifactId}.zip`, {force: true, recursive: true}); if (artifactId) {
// // fs.rmSync(`tmp/artifact_${artifactId}`, {force: true, recursive: true}); fs.rmSync(`${__dirname}/../games/tmp/${owner}_${repo}_${artifactId}.zip`, {force: true, recursive: false});
// // fs.rmSync(`tmp/artifact_${artifactId}_inner`, {force: true, recursive: true}); fs.rmSync(`${__dirname}/../games/tmp/${owner}_${repo}_${artifactId}`, {force: true, recursive: true});
// // fs.rmSync(`tmp/archive_${artifactId}.tar`, {force: true, recursive: true}); }
// }
progress[id].done = true progress[id].done = true
} }
await new Promise(resolve => setTimeout(resolve, 10000)) await new Promise(resolve => setTimeout(resolve, 10000))

Loading…
Cancel
Save