Skip to content
Commits on Source (3)
3.0.16:
Add some warnings if some file is missing
3.0.15:
Fix check on bank properties config file when args is empty vs not defined
3.0.14:
......
......@@ -299,6 +299,9 @@ class Utils(object):
else:
if not os.path.exists(os.path.dirname(to_file)):
os.makedirs(os.path.dirname(to_file))
if not os.path.exists(from_file):
logger.warn('File does not exists: %s' % (from_file))
continue
if move:
shutil.move(from_file, to_file)
else:
......
biomaj3-core (3.0.16-1) unstable; urgency=medium
* New upstream release
-- Olivier Sallou <osallou@debian.org> Sat, 09 Mar 2019 07:56:51 +0000
biomaj3-core (3.0.15-1) unstable; urgency=medium
* New upstream release (bug fixes)
......
......@@ -21,7 +21,7 @@ config = {
'url': 'http://biomaj.genouest.org',
'download_url': 'http://biomaj.genouest.org',
'author_email': 'olivier.sallou@irisa.fr',
'version': '3.0.15',
'version': '3.0.16',
'classifiers': [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
......