我不想依赖记住capsule.bxb
每次更新应用程序时手动更新版本号。
在python中,我通常这样做:
def get_latest_git_tag(path):
repo = git.Repo(path)
tags = sorted(repo.tags, key=lambda t: t.commit.committed_datetime)
latest_git_tag = tags[-1]
return latest_git_tag
我想capsule.bxb
从 git 中读取一个动态版本变量。
在 bash 中,
git describe --abbrev=0 | cut -c 2-8
我看到有一个 ShellJS 可以让我运行这个命令,但我认为它不能执行capsule.bxb
,不是吗?
我希望能够做类似的事情
capsule {
id (altbrains.quotations)
version (<getsversion>)