Skip to content

Commit

Permalink
Support for gitinfo.json
Browse files Browse the repository at this point in the history
  • Loading branch information
dmichaels-harvard committed Jan 3, 2024
1 parent 68d3be3 commit 68fd0fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dcicutils/scripts/publish_to_pypi.py
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ def get_untracked_files() -> list:
# Ignore any __pycache__ directories as they are already ignored by poetry publish.
if os.path.isdir(untracked_file) and os.path.basename(untracked_file.rstrip("/")) == "__pycache__":
continue
# Ignore gitinfo.json which may exist if the repo wants to create this via GitHub Actions.
# Ignore gitinfo.json which may exist if the repo wants to create this via GitHub Actions.
if os.path.basename(untracked_file) == "gitinfo.json":
continue
untracked_files.append(untracked_file)
Expand Down

0 comments on commit 68fd0fa

Please sign in to comment.