Is it possible to append some value to existing TeamCity configuration parameter from custom build script using service message?
I tried these options:
Step 1 (Command Line - Custom script - external):
echo "##teamcity[setParameter name='par' value='%par% added']"
Step 2 (Command Line - Custom script - inline):
echo "%par%" # %par%
Step 1 (Command Line - Custom script - external):
echo "##teamcity[setParameter name='par' value='par added']"
Step 2 (Command Line - Custom script - inline):
echo "%par%" # par added
Step 1 (Command Line - Custom script - external):
echo "##teamcity[setParameter name='par' value='{par} added']"
This works for buildStatus, but not here
Step 2 (Command Line - Custom script - inline):
echo "%par%" # {par} added
Is there some way to do this as one-liner, or do I need to workaround it with some other parameter that will be referenced like par = value_that_shall_be_always_here %helper%
and initialized later in the build script with setParameter name='helper' value='added'
?