We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d6e5ea commit 4c2d969Copy full SHA for 4c2d969
bioconda-backup/index.js
@@ -638,7 +638,9 @@ getContainers(options).then((containers) => {
638
}).then(() => {
639
console.log('done', total, docker_errors, quay_errors);
640
fs.unlinkSync(`${config.workdir}/sync.lock`);
641
- fs.unlinkSync(`${config.workdir}/${containerFileList}`)
+ if(fs.existsSync(`${config.workdir}/${containerFileList}`)) {
642
+ fs.unlinkSync(`${config.workdir}/${containerFileList}`)
643
+ }
644
process.exit(0);
645
}).catch(err => {
646
console.error('oopps!', err, docker_errors, quay_errors);
0 commit comments