Skip to content

Commit

Permalink
Merge pull request #26 from tawanda-kembo/ci/streamline-release-process
Browse files Browse the repository at this point in the history
chore: update .gitignore and remove build artifacts from tracking
  • Loading branch information
tawandakembo authored Jul 27, 2024
2 parents 081f213 + af5bc96 commit c78ffff
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
14 changes: 13 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -127,4 +127,16 @@ dmypy.json
.pytype/

# Cython debug symbols
cython_debug/
cython_debug/

# Pytest cache
.pytest_cache/

# Python cache
__pycache__/
*.pyc

# Distribution / packaging
*.egg-info/
build/
dist/
2 changes: 1 addition & 1 deletion code_collator/collate.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def read_gitignore(path):
logging.info("Loaded .gitignore patterns from {gitignore_path}")
return patterns
except Exception as e:
logging.error("Error reading .gitignore file {gitignore_path}: {e}")
logging.error(f"Error reading .gitignore file {gitignore_path}: {e}")
return []


Expand Down

0 comments on commit c78ffff

Please sign in to comment.