Skip to content

Commit

Permalink
Enable debugging text by default
Browse files Browse the repository at this point in the history
  • Loading branch information
StrangeRanger committed Dec 7, 2024
1 parent 761f9fa commit 740544a
Showing 1 changed file with 4 additions and 3 deletions.
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 740544a

Please sign in to comment.