| Hi everyone. I just wanna add a new line to a txt file (name: version.property) after build step. Using shell console in any job on Jenkins UI: echo blabla >> version.property my current solution is: echo >> version.property echo blabla >> version.property If I add a new line with " echo blabla >> version.property" on the batch server, the bash on the server automatically add the new line to the end of the file. If I use the shell plugin on Jenkins, I change the file on Jenkins and send the file via ssh to the batch server, it doesn't work with only one line. I guess shell plugin has an issue to format a .property file correctly. |