Skip to content

Commit

Permalink
fixed typo2
Browse files Browse the repository at this point in the history
  • Loading branch information
Grashalmbeisser committed Nov 8, 2024
1 parent 1adfa7b commit ee26b90
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/viur_cli/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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...")
Expand Down

0 comments on commit ee26b90

Please sign in to comment.