Skip to content
Snippets Groups Projects
Commit ea3183a8 authored by Filippo Cremonese's avatar Filippo Cremonese
Browse files

Fix --no-config option of update command

parent 37112728
No related branches found
No related tags found
No related merge requests found
......@@ -16,7 +16,7 @@ def install_subcommand(sub_argparser):
def handle_update(args, config: Configuration):
failed_pulls = []
if args.no_config:
if not args.no_config:
logger.info("Updating orchestra configuration")
result = git_pull(config.orchestra_dotdir)
if result.returncode:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment