Skip to content

Commit

Permalink
build: [release] 我来刷版本号辣
Browse files Browse the repository at this point in the history
  • Loading branch information
helloplhm-qwq committed Jan 31, 2024
1 parent 896dd6f commit 878a9f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ def get_specified_tag(index):
return subprocess.check_output(['git', 'tag']).decode('utf-8').strip().split("\n")[index]

def get_changelog():
res = subprocess.check_output(
['git', 'log', f'{get_latest_tag()}..HEAD', '--pretty=format:"%h %s"']).decode('utf-8').strip()
cmd = ['git', 'log', f'{get_latest_tag()}..HEAD', '--pretty=format:"%h %s"']
res = subprocess.check_output(cmd).decode('utf-8').strip()
res = res.split('\n')
featMsg = []
fixMsg = []
Expand Down

0 comments on commit 878a9f8

Please sign in to comment.