Skip to content

Commit

Permalink
[O] Replace \t with " "
Browse files Browse the repository at this point in the history
  • Loading branch information
hykilpikonna committed Apr 2, 2023
1 parent 9018dbb commit 8ffb806
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion neofetch
Original file line number Diff line number Diff line change
Expand Up @@ -12571,7 +12571,7 @@ xxxxxxxxxxxxxxxxxx0 xxxxxxxxxxxxxx
0xxx00
x00
EOF
;;
;;

"Scientific"*)
set_colors 4 7 1
Expand Down
2 changes: 1 addition & 1 deletion tools/deploy-release.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def edit_versions(version: str):
# 4. neofetch script
print('Editing neofetch...')
path = Path('neofetch')
lines = path.read_text().split('\n')
lines = path.read_text().replace("\t", " ").split('\n')
version_i = next(i for i, l in enumerate(lines) if l.startswith('version='))
nf = pv.parse(lines[version_i].replace('version=', ''))
new = pv.parse(version)
Expand Down

0 comments on commit 8ffb806

Please sign in to comment.