Skip to content

Commit

Permalink
Merge pull request #185 from ethanholz/main
Browse files Browse the repository at this point in the history
fix: updated to add a tag message for the initial git tag
  • Loading branch information
Lnaden authored Mar 4, 2024
2 parents 4c3ea62 + 0552aee commit b59ebfb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hooks/post_gen_project.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def git_init_and_tag():
version = invoke_shell("git tag", expected_error=True)
# Tag if no tag exists
if not version:
invoke_shell("git tag 0.0.0")
invoke_shell("git tag 0.0.0 -m \"Initial commit from MolSSI cookie cutter\"")
else:
print("\ngit repository detected. "
"CookieCutter files have been created in {{ cookiecutter.repo_name }} directory.")
Expand Down

0 comments on commit b59ebfb

Please sign in to comment.