|
|
|
Hi Robin,
First, thanks for your quick response. Second, the workspace path property is only defined once, at the root level. It is the following: /build/workspaces/quickbuild/${current.pathName} Does the pathName include the entire workspace path when it is referenced in child configurations? Why don't we see this behavior on the server then? Thanks, Kurt While Linux recognizes this as an absolute path, JVM on Windows treat this path as a relative path. Write "workspace path" property as below will solve the problem:
${node.getAttribute("os.name").contains("Windows")? "C:/build/workspaces/quickbuild/" + current.pathName: "/build/workspaces/quickbuild/" + current.pathName}
|
Can you tell how the workspace path property is defined in below configurations?
1. root
2. root/level1
3. root/level1/level2
4. root/level1/level2/projectName
And if the workspace path definition uses certain attributes defined in the user agent node, please list value of those attributes also.
Thanks