Skip to content

Commit 383c3cf

Browse files
committed
Merge branch 'release_0.4.0-beta.3' into dev
2 parents 866a90c + 2a7ec1f commit 383c3cf

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

docker/requirements.txt

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
python-magic==0.4.15
2-
boto3==1.9.248
3-
b2sdk==1.0.0
2+
boto3==1.10.8
3+
b2sdk==1.0.2
44
PyDrive==1.3.1
55
paramiko==2.6.0
66
requests==2.22.0
77
urllib3==1.25.6
88
pyyaml==5.1.2
9-
xattr==0.9.6
109
jsonschema==3.1.1

mdbackup/__main__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ def main():
311311
main_upload_backup(config, backup_path, force=args.force)
312312
elif args.mode == 'cleanup':
313313
main_clean_up(logger, config)
314-
elif not args.validate_config:
314+
elif args.mode in ('complete', None):
315315
secret_env = main_load_secrets(logger, config)
316316
backup = main_do_backup(logger, config, secret_env)
317317
main_upload_backup(config, backup)

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
setuptools.setup(
1313
name="mdbackup",
14-
version="0.4.0-beta.2",
14+
version="0.4.0-beta.3",
1515
author="majorcadevs (melchor9000 & amgxv)",
1616
author_email="melchor9000@gmail.com",
1717
description="Small but customizable utility to create backups and store them in cloud storage providers",

0 commit comments

Comments
 (0)