diff --git a/mkignore/__init__.py b/mkignore/__init__.py index ef7f745..12592cc 100644 --- a/mkignore/__init__.py +++ b/mkignore/__init__.py @@ -67,7 +67,9 @@ def main(): if args.generate: print(generate_gitignore(args.templates)) elif args.update: + print('Updating templates...') update_templates() + print('Successfully downloaded {} .gitignore files'.format(len(get_templates()))) elif args.list: for template in get_templates(): print(template['name'], end=' ') diff --git a/setup.py b/setup.py index 694739d..5a166c1 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setuptools.setup( name="mkignore", - version="0.1.3", + version="0.1.4", author="Emanuel Claesson", author_email="emanuel.claesson@gmail.com", description="Generate .gitignore files from templates",