当文件集中缺少文件时如何让 nant 抱怨
我在构建文件中有一个 fileset
元素,其定义为:
<fileset id="fileset" basedir=".">
<include name="test.txt"/>
<include name="missing.txt"/>
</fileset>
当它运行时(作为复制任务的一部分),如果缺少任何文件,它不会抱怨。虽然我可以在 fileset
元素中使用 failonempty="true"
,但只有在两个 文件都丢失时才会失败。
我可以通过使用 failonempty="true"
设置创建多个文件集来实现这一目标,每个文件集包含一个文件,但这感觉很笨拙。如果需要的文件很多,这也是一个维护问题。
如果文件集中的任何文件丢失,是否有任何方法可以让 nant 抱怨?如果这不可能,是否有其他方法可以达到相同的效果?
I have a fileset
element in a build file that is defined as:
<fileset id="fileset" basedir=".">
<include name="test.txt"/>
<include name="missing.txt"/>
</fileset>
When this runs (as part of a copy task), it does not complain if any of the files are missing. Whilst I can use failonempty="true"
in the fileset
element, this only fails if both files are missing.
I can achieve this by making multiple filesets with failonempty="true"
set, each one containing a single file, but this feels clunky. This is also a maintenance problem if there are lots of required files.
Is there any way of making nant complain if any of the files in the fileset are missing? If this is not possible, is there another way of achieving the same effect?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
添加属性
asis="true"
:如果文件丢失,NAnt 会抱怨。
Add attribute
asis="true"
:NAnt will complain then in case the file is missing.