0

我的脚本在使用属性值时失败,但在使用文字字符串指定目录的路径时不会。

这失败了:

    <target name="build">
            <echo>${dir.intermediate}</echo>
            <echo>${dir.source}</echo>
        <copy todir="${dir.intermediate}" includeEmptyDirs="true">
            <dirset dir="${dir.source}" excludes="${file.default.exclude}, ${file.exclude}"/>
        </copy>
    </target>

这有效:

<target name="build">
        <echo>${dir.intermediate}</echo>
        <echo>${dir.source}</echo>
    <copy todir="${dir.intermediate}" includeEmptyDirs="true">
        <dirset dir="/Users/michaelprescott/path" excludes="${file.default.exclude}, ${file.exclude}"/>
    </copy>

如果我在属性或文字的目录中指定绝对或相对路径似乎并不重要。

4

1 回答 1

1

哇。这是一个非常难以识别的问题。查看属性文件时路径显示正确。它在 echo 语句中看起来是正确的。从 ant 失败消息中复制它并将其粘贴到“ls”中时,它甚至看起来是正确的。最后,我注意到目录字符串后面有一个空格。

在属性文件中是:

"./path "

将其更改为以下固定它:

"./path"
于 2012-06-08T17:01:12.143 回答