From 659811a66e0d52a89a95fb0e154600123c19315f Mon Sep 17 00:00:00 2001 From: Azalea Gui Date: Sat, 1 Apr 2023 21:13:11 -0400 Subject: [PATCH] [U] Update release script --- tools/deploy-release.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/deploy-release.py b/tools/deploy-release.py index 7486c9ed..9eb4f0ac 100755 --- a/tools/deploy-release.py +++ b/tools/deploy-release.py @@ -103,6 +103,7 @@ def post_check(): """ Check after changes are made """ + print('Running shellcheck... (This may take a while)') subprocess.check_call(shlex.split('shellcheck neofetch')) @@ -113,7 +114,7 @@ def create_release(v: str): print('Committing changes...') # 1. Add files - subprocess.check_call(['git', 'add', 'hyfetch/constants.py', 'neofetch', 'neofetch.1', 'package.json', 'README.md', + subprocess.check_call(['git', 'add', 'hyfetch/__version__.py', 'neofetch', 'neofetch.1', 'package.json', 'README.md', 'hyfetch/distros/*']) # 2. Commit