Files not copied back by workspace rules

I am trying to get a few files back into the workspace. Here are my workspace rules:

#Server to agent rules
#-http://buildserver.catenalogic.com/Catel/ci/configwizard/stages/CI#--------------------------------------------------
#copy output from previous stages to agent
/Output** > /

#---------------------------------------------------
#Agent to server rules
#---------------------------------------------------
#copy output from the agent to the server
/ < /Output**
Output < $Source.Catel_develop$\output\release\**

#---------------------------------------------------


Then the output looks like this:

Started syncing files from the agent to the server.
Workspace Syncing
Using UNC Transport.
/ < /Output**
Output < C:\CI_WS\Ws\25\Source\Catel_develop\output\release\**
0 files found.
__variables < __variables\*
Finished syncing files from the agent to the server.

When I navigate to C:\CI_WS\Ws\25\Source\Catel_develop\output\release\ I get the directory with lots of subdirectories.


What am I doing wrong that it keeps saying that 0 files are found.

Output < $Source.Catel_develop$\output\release\**

does not find any files because $Source.Catel_develop$ is expanded to C:\CI_WS\Ws\25\Source\Catel_develop and Continua is expecting the rules to be relative to the workspace folder.

There is some code in Continua to remove the workspace folder from the start of each rule but this is not working. A fix for this will be in the next build. 

Meanwhile the following rule will work as you expect:

Output < \Source\Catel_develop\output\release\**



Works like a charm, thanks!