Shibankar
Shibankar

Reputation: 846

Team Explorer Everywhere CLC mapping error: "First free argument must be a server path"

I am trying to create a working folder mapping from a server path and local path.

Create Workspace

./tf workspace -new -collection:http://tfs.wtqa.int.thomson.com:8080/tfs//WTQA -login:usrName@domain,password WORKSPACE_SCM_32

Workspace successfully created.

Map Workspace

./tf workfold -map -workspace:WORKSPACE_SCM_32 -login:userName@doamin,password "$/POC-MSFAgile6.2Project/POC Source Code" /blackduck/project/Protex_SCM_Test_32

but it says "An argument error occurred: First free argument must be a server path"

Upvotes: 2

Views: 392

Answers (1)

mqueirozcorreia
mqueirozcorreia

Reputation: 943

I was having the same problem. What solved to me was using single quotes instead of double quotes:

./tf workfold -map -workspace:WORKSPACE_SCM_32 -login:userName@doamin,password '$/POC-MSFAgile6.2Project/POC Source Code' '/blackduck/project/Protex_SCM_Test_32'

Upvotes: 0

Related Questions