[F] Fix deploy script

This commit is contained in:
Azalea 2023-12-01 19:17:36 -05:00
parent 5f079cec46
commit 9945075de5

View file

@ -64,7 +64,7 @@ def edit_versions(version: str):
# 4. neofetch script # 4. neofetch script
print('Editing neofetch...') print('Editing neofetch...')
path = Path('neofetch') path = Path('neofetch')
lines = path.read_text().replace("\t", " ").split('\n') lines = path.read_text().replace("\t", " ").split('\n')
version_i = next(i for i, l in enumerate(lines) if l.startswith('version=')) version_i = next(i for i, l in enumerate(lines) if l.startswith('version='))
nf = pv.parse(lines[version_i].replace('version=', '')) nf = pv.parse(lines[version_i].replace('version=', ''))
new = pv.parse(version) new = pv.parse(version)
@ -115,8 +115,7 @@ def create_release(v: str):
print('Committing changes...') print('Committing changes...')
# 1. Add files # 1. Add files
subprocess.check_call(['git', 'add', 'hyfetch/__version__.py', 'neofetch', 'neofetch.1', 'package.json', 'README.md', subprocess.check_call(['git', 'add', '.'])
'hyfetch/distros/*'])
# 2. Commit # 2. Commit
subprocess.check_call(['git', 'commit', '-m', f'[U] Release {v}']) subprocess.check_call(['git', 'commit', '-m', f'[U] Release {v}'])