diff --git a/src/viur_cli/setup.py b/src/viur_cli/setup.py index 48f211c..4e43e98 100644 --- a/src/viur_cli/setup.py +++ b/src/viur_cli/setup.py @@ -51,8 +51,8 @@ def clean_base(app_id, author=None): echo_info(subprocess.check_output("git branch -D main", shell=True).decode().rstrip("\n")) subprocess.check_output("git branch -m main", shell=True) - echo_info(f"Current branch is: " - f"{subprocess.check_output('git branch --show-current', shell=True).decode().rstrip('\n')}") + branch_current = subprocess.check_output('git branch --show-current', shell=True).decode().rstrip('\n') + echo_info(f"Current branch is: {branch_current}") echo_info("---") echo_info("Generating project documentation...")