我正在使用TFS2018,我在GetSources步骤中收到以下错误
2017-11-22T10:22:35.4137749Z TF400889: The following path contains more than the allowed 259 characters: C:\agent\_work\1\s\myverylongfoldertoalongfilenamepath. Specify a shorter path.
2017-11-22T10:22:35.4450272Z ##[error]Exit code 1 returned from process: file name 'tf', arguments 'vc get /version:58632 /recursive /overwrite C:\agent\_work\1\s /loginType:OAuth /login:.,******** /noprompt'.
我想缩短Build代理文件夹名称。是否可以将_work文件夹重命名为例如w?
答案 0 :(得分:2)
你所得到的错误目前是来自
的TFVC限制Must not contain more than 259 Unicode characters for a single folder or file name.
您可以通过重新配置构建代理来change the Build Agent Working Directory。您可以使用a
代替agent
并将c:\a\_work\1\s
和_work
改为w
。
否则,您必须在TFS源代码管理中手动调整文件/文件夹结构以绕过此问题。从C:\Agent\_work\1\s\TestCaseProject
到C:\Agent\_work\1\s\TestCasePro