Skip to content

Commit

Permalink
comma
Browse files Browse the repository at this point in the history
why was I using vim?
should've stared pycharm right away.
  • Loading branch information
mini-bomba committed Jun 21, 2022
1 parent 1c15b03 commit f50d087
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ def get_boolean(key: str) -> bool:

# Create/move tag
print("::group::🏷️ Creating/Moving the tag...")
gitproc = subprocess.Popen(["git", "tag", "-f" tag_name, target_commit],
gitproc = subprocess.Popen(["git", "tag", "-f", tag_name, target_commit],
stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
out, _ = gitproc.communicate()
print("::stop-commands::git-output")
Expand Down

0 comments on commit f50d087

Please sign in to comment.