0

使用git archive命令,我可以在源代码中插入文本,例如:如果代码有字符串

 # $Format:%cd$

该字符串被提交日期替换。

使用 pyinstaller 和规范文件,我可以做出类似的事情吗?(在构建过程中更新字符串)

4

1 回答 1

0

也许一个解决方案是一个make文件

# makefile
# update some string with git export
git archive ...
# pyinstaller in output directory of git export
pyinstaller file.spec

但是,我尝试使用 pyinstaller 搜索直接解决方案。

于 2014-01-03T12:46:30.020 回答