Skip to content

Commit

Permalink
πŸ’š Fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
falexwolf committed Sep 7, 2024
1 parent 34c93e1 commit 1576ec0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion laminci/_docs_artifacts.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def zip_docs_dir(zip_filename: str) -> None:

def zip_docs():
repo_name = Path.cwd().name
assert repo_name.suffix == "" # doesn't have a weird suffix
assert "." not in repo_name # doesn't have a weird suffix
assert Path(".git/").exists() # is git repo
assert repo_name.lower() == repo_name # is all lower-case
zip_filename = f"{repo_name}.zip"
Expand Down

0 comments on commit 1576ec0

Please sign in to comment.