Using TeamCity Enterprise 10.0.2 (build 42234) I create a build step that looks like this:
In Parameters I have a variable called "password.config".
I have done this many times before, both with passwords that are hidden and plain text files. However this time the file gets created as normal but the value added is the following: %password.config%
. It does not pick up the value from the parameter like the other files. This has happened once before but then it started working when I ran a new build the day after. Does anyone know why this is happening?
The error was that the value contained percent signs %
that were not escaped with %%
. After escaping with two percentage signs everything worked. Probably cached value because the changes did not take effect right away.