如何从蜂包工具中排除多个目录?bee pack -ba "-tags prod" -exr=^userfiles$
这不包括该特定目录。但我想排除名为用户文件,部署,文档的目录。我试过了-exr=[^userfiles$,^deploy$,^docs$]
-exr=["^userfiles$","^deploy$","^docs$"]
这两个都不起作用。
最佳答案
由于exr是一个正则表达式,因此您可以尝试使用(使用re2 syntax)复合:
-exr=^(?:userfile|deploy|docs)$
OP Joseph确认了in the comments这个想法:
goop exec bee pack -ba "-tags prod" -exr="^(?:userfiles|deploy|tests|docs)$"
关于go - 如何从蜂包中排除多个目录,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29869580/