在一个蚂蚁构建文件中,我想在Windows中将一个属性设置为一个值,而在没有时或通过多种操作系统的“切换”将其设置为另一个。
所需功能:
if(host is windows) {
path.to.thing = "where it is on windows";
} else if (host is linux) {
path.to.thing = "where it is on linux";
} else {
...
}
类似:??
<condition property="path.to.import">
<os family="windows"/>
<!-- somehting to do with the os family value ?? -->
...
</condition>
<import file="${path.to.import}"/>
??