Skip to content

Commit

Permalink
Merge pull request #95 from StrangeRanger/dev
Browse files Browse the repository at this point in the history
  • Loading branch information
StrangeRanger authored Dec 7, 2024
2 parents 9368327 + 8d9dd69 commit a20ff47
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
File renamed without changes.
7 changes: 4 additions & 3 deletions update_repo.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,10 @@ def zsh_config():
while line_number < len(data):
line = data[line_number]

# Uncomment the code below to help debug edge cases.
# print(f"Processing line {line_number + 1} of {file_paths['from']}")
# print(f"Line: {line}")
## DEBUG: The below lines help with debugging, especially when running in a
## CI/CD environment.
print(f"Processing line {line_number + 1} of {file_paths['from']}")
print(f"Line: {line}")

if any(marker in line for marker in CHEZMOI_STATEMENTS):
skip_line = chezmoi_edge_case(line, data, line_number)
Expand Down

0 comments on commit a20ff47

Please sign in to comment.