我正在使用Dist::Zilla构建一个Perl模块。我已经用Git::GatherDir替换了标准的GatherDir。但是我的主模块lib/XY.pm是生成的,因此不受版本控制。如何添加?
发布于 2021-08-01 17:23:38
在GatherDir中运行Git::GatherDir之后,您是否可以尝试使用特定的root属性运行dist.ini。例如。
# ...
[Git::GatherDir]
[GatherDir]
root=lib
# ...https://stackoverflow.com/questions/68611919
复制相似问题